2024-08-29 18:56:50 +02:00
|
|
|
package utils
|
|
|
|
|
2024-08-30 08:15:38 +02:00
|
|
|
|
2024-08-29 18:56:50 +02:00
|
|
|
|
|
|
|
|
|
|
|
type AccountFileHandlerInterface interface {
|
|
|
|
EnsureFileExists() error
|
|
|
|
ReadAccountData() (map[string]string, error)
|
|
|
|
WriteAccountData(data map[string]string) error
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|