refactor(confidence-engine): add investigation storage provider

This commit is contained in:
2026-08-27 15:24:38 +01:00
parent 22e1d7484b
commit ba956eeb3a
3 changed files with 344 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
// investigation-storage — generic persistence boundary
// Exposes loadInvestigation / saveInvestigation / clearInvestigation
// and delegates internally to the concrete localStorage provider.
export { loadInvestigation, saveInvestigation, clearInvestigation } from "./providers/local-storage.js";