Files
ai_proxy/server/router/enter.go
2026-03-03 06:05:51 +08:00

14 lines
247 B
Go

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