()
| 358 | } |
| 359 | |
| 360 | func (engine *Engine) rebuild405Handlers() { |
| 361 | engine.allNoMethod = engine.combineHandlers(engine.noMethod) |
| 362 | } |
| 363 | |
| 364 | func (engine *Engine) addRoute(method, path string, handlers HandlersChain) { |
| 365 | assert1(path[0] == '/', "path must begin with '/'") |
no test coverage detected