Look up the account matching the given localpart.
(ctx context.Context, localpart string)
| 42 | type AccountDatabase interface { |
| 43 | // Look up the account matching the given localpart. |
| 44 | GetAccountByLocalpart(ctx context.Context, localpart string) (*api.Account, error) |
| 45 | GetAccountByPassword(ctx context.Context, localpart, password string) (*api.Account, error) |
| 46 | } |
| 47 |
no outgoing calls
no test coverage detected