ServeKite calls h(r)
(r *Request)
| 37 | |
| 38 | // ServeKite calls h(r) |
| 39 | func (h HandlerFunc) ServeKite(r *Request) (interface{}, error) { |
| 40 | return h(r) |
| 41 | } |
| 42 | |
| 43 | // FinalFunc represents a proxy function that is called last |
| 44 | // in the method call chain, regardless whether whole call |
nothing calls this directly
no outgoing calls
no test coverage detected