(http.ResponseWriter, *http.Request)
| 136 | // for a technical reason (not for bad/missing credentials). |
| 137 | type Authenticator interface { |
| 138 | Authenticate(http.ResponseWriter, *http.Request) (User, bool, error) |
| 139 | } |
| 140 | |
| 141 | // User represents an authenticated user. |
no outgoing calls
no test coverage detected