mirror of
https://github.com/TecharoHQ/anubis.git
synced 2026-04-11 19:18:46 +00:00
11 lines
246 B
Go
11 lines
246 B
Go
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
|
|
}
|