14 lines
247 B
Go
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
|
|
}
|