HandlersChain defines a HandlerFunc array.
| 34 | |
| 35 | // HandlersChain defines a HandlerFunc array. |
| 36 | type HandlersChain []HandlerFunc |
| 37 | |
| 38 | // Last returns the last handler in the chain. ie. the last handler is the main one. |
| 39 | func (c HandlersChain) Last() HandlerFunc { |
nothing calls this directly
no outgoing calls
no test coverage detected