PostHandleFunc is the same as PostHandle. It accepts a HandlerFunc.
(handler HandlerFunc)
| 192 | |
| 193 | // PostHandleFunc is the same as PostHandle. It accepts a HandlerFunc. |
| 194 | func (k *Kite) PostHandleFunc(handler HandlerFunc) { |
| 195 | k.PostHandle(handler) |
| 196 | } |
| 197 | |
| 198 | // FinalFunc registers a function that is always called as a last one |
| 199 | // after pre-, handler and post- functions. |