MCPcopy
hub / github.com/gofiber/fiber / Group

Struct Group

group.go:14–21  ·  view source on GitHub ↗

Group represents a collection of routes that share middleware and a common path prefix.

Source from the content-addressed store, hash-verified

12// Group represents a collection of routes that share middleware and a common
13// path prefix.
14type Group struct {
15 app *App
16 parentGroup *Group
17 name string
18
19 Prefix string
20 hasAnyRoute bool
21}
22
23// Name Assign name to specific route or group itself.
24//

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected