16 lines
309 B
Go
16 lines
309 B
Go
package service
|
|
|
|
import (
|
|
"bygdata/service/example"
|
|
"bygdata/service/system"
|
|
"bygdata/service/userdata"
|
|
)
|
|
|
|
var ServiceGroupApp = new(ServiceGroup)
|
|
|
|
type ServiceGroup struct {
|
|
SystemServiceGroup system.ServiceGroup
|
|
ExampleServiceGroup example.ServiceGroup
|
|
UserdataServiceGroup userdata.ServiceGroup
|
|
}
|