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

16 lines
393 B
Go

package service
import (
"git.echol.cn/loser/Go-Web-Template/server/service/app"
"git.echol.cn/loser/Go-Web-Template/server/service/common"
"git.echol.cn/loser/Go-Web-Template/server/service/system"
)
var ServiceGroupApp = new(ServiceGroup)
type ServiceGroup struct {
SystemServiceGroup system.ServiceGroup
CommonServiceGroup common.ServiceGroup
AppServiceGroup app.ServiceGroup
}