AdminHandlerFunc is a convenience type like http.HandlerFunc.
func(http.ResponseWriter, *http.Request) error
| 1363 | |
| 1364 | // AdminHandlerFunc is a convenience type like http.HandlerFunc. |
| 1365 | type AdminHandlerFunc func(http.ResponseWriter, *http.Request) error |
| 1366 | |
| 1367 | // ServeHTTP implements the Handler interface. |
| 1368 | func (f AdminHandlerFunc) ServeHTTP(w http.ResponseWriter, r *http.Request) error { |
no outgoing calls
no test coverage detected