fix: only pass over config settings

(cherry picked from commit 3884158f06b71907f004d7a2b4df53e3e486983b)
This commit is contained in:
鲁树人
2021-12-21 22:17:43 +00:00
parent eaf457e6a0
commit 0715eeea0b
3 changed files with 26 additions and 7 deletions

View File

@@ -1,4 +1,5 @@
const KEY_JOOX_UUID = 'joox.uuid';
export const KEY_PREFIX = 'um.conf.';
const KEY_JOOX_UUID = `${KEY_PREFIX}joox.uuid`;
export default abstract class BaseStorage {
protected abstract save<T>(name: string, value: T): Promise<void>;