]> git.r.bdr.sh - rbdr/mobius/blob - hotline/account_manager.go
03621df2691d19c370ae776f1a79f6d7d935925d
[rbdr/mobius] / hotline / account_manager.go
1 package hotline
2
3 type AccountManager interface {
4 Create(account Account) error
5 Update(account Account, newLogin string) error
6 Get(login string) *Account
7 List() []Account
8 Delete(login string) error
9 }