Files
Go-Web-Template/server/router/enter.go
2026-04-23 15:29:07 +08:00

16 lines
347 B
Go

package router
import (
"git.echol.cn/loser/Go-Web-Template/server/router/app"
"git.echol.cn/loser/Go-Web-Template/server/router/common"
"git.echol.cn/loser/Go-Web-Template/server/router/system"
)
var RouterGroupApp = new(RouterGroup)
type RouterGroup struct {
System system.RouterGroup
Common common.RouterGroup
App app.RouterGroup
}