xGroup is the implementation of Group interface.
| 33 | |
| 34 | // xGroup is the implementation of Group interface. |
| 35 | type xGroup struct { |
| 36 | prefix string |
| 37 | middlewares []Middleware |
| 38 | allRouterExpress map[string]struct{} |
| 39 | server *HttpServer |
| 40 | notFoundHandler StandardHandle |
| 41 | } |
| 42 | |
| 43 | func NewGroup(prefix string, server *HttpServer) Group { |
| 44 | g := &xGroup{prefix: prefix, server: server, allRouterExpress: make(map[string]struct{})} |
nothing calls this directly
no outgoing calls
no test coverage detected