MCPcopy
hub / github.com/gin-gonic/gin / RouterGroup

Struct RouterGroup

routergroup.go:55–60  ·  view source on GitHub ↗

RouterGroup is used internally to configure router, a RouterGroup is associated with a prefix and an array of handlers (middleware).

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected