Handler is our custom HTTP handler with error returns
func(w http.ResponseWriter, r *http.Request) error
| 10 | |
| 11 | // Handler is our custom HTTP handler with error returns |
| 12 | type Handler func(w http.ResponseWriter, r *http.Request) error |
| 13 | |
| 14 | type envelope struct { |
| 15 | Data interface{} `json:",omitempty"` |