Files
st/server/service/enter.go
2026-02-10 17:48:27 +08:00

16 lines
362 B
Go

package service
import (
"git.echol.cn/loser/st/server/service/app"
"git.echol.cn/loser/st/server/service/example"
"git.echol.cn/loser/st/server/service/system"
)
var ServiceGroupApp = new(ServiceGroup)
type ServiceGroup struct {
SystemServiceGroup system.ServiceGroup
ExampleServiceGroup example.ServiceGroup
AppServiceGroup app.AppServiceGroup
}