Fix temporal persistence wiring and restore slurp_full suite

This commit is contained in:
anthonyrawlins
2025-09-28 11:39:03 +10:00
parent 9c32755632
commit 2ff408729c
16 changed files with 1195 additions and 802 deletions

View File

@@ -0,0 +1,8 @@
package storage
import "errors"
// ErrNotFound indicates that the requested context does not exist in storage.
// Tests and higher-level components rely on this sentinel for consistent handling
// across local, distributed, and encrypted backends.
var ErrNotFound = errors.New("storage: not found")