PostHandlerFunc adds a new kite handlerfunc which is executed before the method.
(handler HandlerFunc)
| 143 | // PostHandlerFunc adds a new kite handlerfunc which is executed before the |
| 144 | // method. |
| 145 | func (m *Method) PostHandleFunc(handler HandlerFunc) *Method { |
| 146 | return m.PostHandle(handler) |
| 147 | } |
| 148 | |
| 149 | // FinalFunc registers a function that is always called as a last one |
| 150 | // after pre-, handler and post- functions for the given method. |
nothing calls this directly
no test coverage detected