restructuring

This commit is contained in:
2024-12-27 03:25:44 +01:00
parent a711e5742d
commit ab1b709c77
5 changed files with 39 additions and 2 deletions

View File

@@ -0,0 +1,8 @@
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
}