Ensure handler init when state and cache is available

This commit is contained in:
lash
2024-09-05 20:35:51 +01:00
parent 643b4d87a9
commit 0feb013c78
4 changed files with 161 additions and 56 deletions

View File

@@ -1,13 +0,0 @@
package utils
type AccountFileHandlerInterface interface {
EnsureFileExists() error
ReadAccountData() (map[string]string, error)
WriteAccountData(data map[string]string) error
}