goweb-gin-demo/service/enter.go

14 lines
245 B
Go
Raw Normal View History

2021-10-29 14:39:50 +08:00
package service
import (
"goweb-gin-demo/service/system"
"goweb-gin-demo/service/wt"
)
2021-11-04 19:39:59 +08:00
2021-10-29 14:39:50 +08:00
type ServiceGroup struct {
SystemServiceGroup system.SystemServiceGroup
WtServiceGroup wt.WtServiceGroup
2021-10-29 14:39:50 +08:00
}
var ServiceGroupApp = new(ServiceGroup)