(ctx context.Context, phone string)
| 19 | CreateUser(ctx context.Context, u domain.User) error |
| 20 | FindByID(ctx context.Context, id int64) (domain.User, error) |
| 21 | FindByPhone(ctx context.Context, phone string) (domain.User, error) |
| 22 | FindByUsername(ctx context.Context, username string) (domain.User, error) |
| 23 | ChangePassword(ctx context.Context, username string, newPassword string) error |
| 24 | DeleteUser(ctx context.Context, username string, uid int64) error |
no outgoing calls
no test coverage detected