change docstring formating

This commit is contained in:
2024-12-28 01:28:36 +01:00
parent aeb9de71a1
commit 564b6f815e
3 changed files with 50 additions and 41 deletions

View File

@@ -6,4 +6,5 @@ type IDatastore interface {
Get(key string) (string, error)
GetAll() (map[string]string, error)
GetAllKeys() (map[string]bool, error)
Delete(key string) error
}