refactor: add persistence groundwork and structured logging

This commit is contained in:
2026-07-20 21:48:08 +02:00
parent 7dde7378b8
commit 5fd48d1971
19 changed files with 567 additions and 200 deletions
@@ -0,0 +1,4 @@
export interface PersistenceStore<T> {
load(): Promise<T | null>;
save(data: T): Promise<void>;
}