Handle is a function that can be registered to a route to handle HTTP requests. Like http.HandlerFunc, but has a third parameter for the values of wildcards (variables).
func(http.ResponseWriter, *http.Request, Params)
| 86 | // requests. Like http.HandlerFunc, but has a third parameter for the values of |
| 87 | // wildcards (variables). |
| 88 | type Handle func(http.ResponseWriter, *http.Request, Params) |
| 89 | |
| 90 | // Param is a single URL parameter, consisting of a key and a value. |
| 91 | type Param struct { |
nothing calls this directly
no outgoing calls
no test coverage detected