Group represents a collection of routes that share middleware and a common path prefix.
| 12 | // Group represents a collection of routes that share middleware and a common |
| 13 | // path prefix. |
| 14 | type 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 | // |
nothing calls this directly
no outgoing calls
no test coverage detected