16 lines
362 B
Go
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
|
|
}
|