Files
crowsnest/internal/data/IDatastore.go

10 lines
292 B
Go
Raw Normal View History

2024-12-27 22:34:43 +01:00
package data
type IDatastore interface {
Set(key string, val string) error
KeyExists(key string) (bool, error)
Get(key string) (string, error)
GetAll() (map[string]string, error)
GetAllKeys() (map[string]bool, error)
}