v2-Neuerstellung
Some checks failed
release-tag / release-image (push) Failing after 1m48s

This commit is contained in:
2026-05-18 11:25:31 +02:00
parent a38c883450
commit b7edfdd544
15 changed files with 836 additions and 600 deletions

11
internal/store/store.go Normal file
View File

@@ -0,0 +1,11 @@
package store
import "context"
type CounterStore interface {
Init(ctx context.Context) error
Increment(ctx context.Context, slug string) (int64, error)
Get(ctx context.Context, slug string) (int64, error)
GetMany(ctx context.Context, slugs []string) (map[string]int64, error)
Close() error
}