go-io/store/doc.go
Virgil 9fb978dc75
Some checks failed
CI / test (push) Failing after 2s
CI / auto-fix (push) Failing after 0s
CI / auto-merge (push) Failing after 0s
refactor(ax): make docs and helpers example-driven
2026-03-30 20:47:41 +00:00

10 lines
396 B
Go

// Package store provides a SQLite-backed group-namespaced key-value store.
//
// kvStore, _ := store.New(":memory:")
// _ = kvStore.Set("app", "theme", "midnight")
// medium := kvStore.AsMedium()
// _ = medium.Write("app/theme", "midnight")
//
// It also exposes an io.Medium adapter so grouped values can participate in
// the same storage workflows as filesystem-backed mediums.
package store