2021-10-29 14:39:50 +08:00
|
|
|
package service
|
|
|
|
|
2021-11-05 12:19:50 +08:00
|
|
|
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 {
|
2021-11-05 12:19:50 +08:00
|
|
|
SystemServiceGroup system.SystemServiceGroup
|
|
|
|
WtServiceGroup wt.WtServiceGroup
|
2021-10-29 14:39:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
var ServiceGroupApp = new(ServiceGroup)
|