GetUser returns a user with a specific username. If the user is not found, this function throws a panic.
(username string)
| 503 | // GetUser returns a user with a specific username. If the user is not found, this function |
| 504 | // throws a panic. |
| 505 | GetUser(username string) (AuthUser, error) |
| 506 | // RemoveUser removes a user from the internal database. If the user is not found, this |
| 507 | // function throws a panic. |
| 508 | RemoveUser(username string) |
no outgoing calls