디렉터리 페이지 레이아웃 구현 및 디렉터리 생성 구현

This commit is contained in:
static
2025-01-02 08:49:51 +09:00
parent baf48579b8
commit 31081e5191
21 changed files with 403 additions and 38 deletions

View File

@@ -8,8 +8,9 @@ export interface ClientKeys {
}
export interface MasterKey {
version: number;
state: "active" | "retired" | "dead";
masterKey: CryptoKey;
key: CryptoKey;
}
export const clientKeyStore = writable<ClientKeys | null>(null);