9 lines
223 B
Go
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
|
|
}
|