Files
sundynix-go/router/enter.go
T
2026-04-28 10:29:02 +08:00

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
}