(accountName string)
| 30 | } |
| 31 | |
| 32 | func (store *Storage) CreateIMAPAcct(accountName string) error { |
| 33 | return store.Back.CreateUser(accountName) |
| 34 | } |
| 35 | |
| 36 | func (store *Storage) DeleteIMAPAcct(accountName string) error { |
| 37 | return store.Back.DeleteUser(accountName) |
nothing calls this directly
no test coverage detected