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 }