feat(syncing-server): persisting shared vault and key system associations (#660)

This commit is contained in:
Karol Sójko
2023-07-18 11:39:02 +02:00
committed by GitHub
parent fae4553fc8
commit 479d20e76f
44 changed files with 662 additions and 119 deletions
@@ -0,0 +1,6 @@
import { KeySystemAssociation } from './KeySystemAssociation'
export interface KeySystemAssociationRepositoryInterface {
save(keySystem: KeySystemAssociation): Promise<void>
remove(keySystem: KeySystemAssociation): Promise<void>
}