feat(lib): valkey backed store

Signed-off-by: Xe Iaso <me@xeiaso.net>
This commit is contained in:
Xe Iaso
2025-06-05 20:50:59 -04:00
parent c638653172
commit 21ee6e3406
7 changed files with 135 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
package store
import "context"
type Impl interface {
GetInt(ctx context.Context, segments []string) (int, error)
MultiGetInt(ctx context.Context, segments [][]string) ([]int, error)
Increment(ctx context.Context, segments []string) error
}