14 lines
299 B
Go
14 lines
299 B
Go
package service
|
|
|
|
import (
|
|
"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
|
|
}
|