GetUserByID returns the user with given ID. It returns database.ErrUserNotExist when not found.
(ctx context.Context, id int64)
| 114 | // GetUserByID returns the user with given ID. It returns |
| 115 | // database.ErrUserNotExist when not found. |
| 116 | GetUserByID(ctx context.Context, id int64) (*database.User, error) |
| 117 | // GetUserByUsername returns the user with given username. It returns |
| 118 | // database.ErrUserNotExist when not found. |
| 119 | GetUserByUsername(ctx context.Context, username string) (*database.User, error) |
no outgoing calls
no test coverage detected