RouterGroup is used internally to configure router, a RouterGroup is associated with a prefix and an array of handlers (middleware).
| 53 | // RouterGroup is used internally to configure router, a RouterGroup is associated with |
| 54 | // a prefix and an array of handlers (middleware). |
| 55 | type RouterGroup struct { |
| 56 | Handlers HandlersChain |
| 57 | basePath string |
| 58 | engine *Engine |
| 59 | root bool |
| 60 | } |
| 61 | |
| 62 | var _ IRouter = (*RouterGroup)(nil) |
| 63 |
nothing calls this directly
no outgoing calls
no test coverage detected