refactor: add persistence groundwork and structured logging
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
export interface PersistenceStore<T> {
|
||||
load(): Promise<T | null>;
|
||||
save(data: T): Promise<void>;
|
||||
}
|
||||
Reference in New Issue
Block a user