17 lines
267 B
Go
17 lines
267 B
Go
package router
|
|
|
|
import (
|
|
"sundynix-go/router/codegen"
|
|
"sundynix-go/router/order"
|
|
"sundynix-go/router/system"
|
|
)
|
|
|
|
var GroupApp = new(Group)
|
|
|
|
// Group 路由组
|
|
type Group struct {
|
|
System system.RouterGroup
|
|
Codegen codegen.RouterGroup
|
|
Order order.RouterGroup
|
|
}
|