Files
ai_proxy/server/router/enter.go
2026-03-03 15:39:23 +08:00

16 lines
331 B
Go

package router
import (
"git.echol.cn/loser/ai_proxy/server/router/app"
"git.echol.cn/loser/ai_proxy/server/router/example"
"git.echol.cn/loser/ai_proxy/server/router/system"
)
var RouterGroupApp = new(RouterGroup)
type RouterGroup struct {
System system.RouterGroup
Example example.RouterGroup
App app.RouterGroup
}