diff options
Diffstat (limited to 'hotline/account_manager.go')
| -rw-r--r-- | hotline/account_manager.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/hotline/account_manager.go b/hotline/account_manager.go index 03621df..52c24f8 100644 --- a/hotline/account_manager.go +++ b/hotline/account_manager.go @@ -1,5 +1,7 @@ package hotline +// AccountManager provides an interface for managing user accounts, +// including creation, retrieval, updates, and deletion operations. type AccountManager interface { Create(account Account) error Update(account Account, newLogin string) error |