Files
crowsnest/internal/data/datastore.go
2024-12-27 03:25:44 +01:00

9 lines
223 B
Go

package data
type Datastore interface {
Set(key string) error
Get(key string) string, error
GetAll(rowkey string) map[string]string, error
GetAllKeys() map[string]bool, error
}