blob: 03621df2691d19c370ae776f1a79f6d7d935925d (
plain)
1
2
3
4
5
6
7
8
9
|
package hotline
type AccountManager interface {
Create(account Account) error
Update(account Account, newLogin string) error
Get(login string) *Account
List() []Account
Delete(login string) error
}
|