func(http.ResponseWriter, *http.Request) *appError
| 400 | } |
| 401 | |
| 402 | type appHandler func(http.ResponseWriter, *http.Request) *appError |
| 403 | |
| 404 | func wrapHandlerFunc(f http.HandlerFunc) appHandler { |
| 405 | return func(w http.ResponseWriter, r *http.Request) *appError { |