| Current Path : /home/hotlineuser/mobius/hotline/ |
| Current File : //home/hotlineuser/mobius/hotline/account_manager.go |
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
Get(login string) *Account
List() []Account
Delete(login string) error
}