14 lines
216 B
Go
14 lines
216 B
Go
package service
|
|
|
|
import (
|
|
"sundynix-go/service/plant"
|
|
"sundynix-go/service/system"
|
|
)
|
|
|
|
var GroupApp = new(Group)
|
|
|
|
type Group struct {
|
|
SystemServiceGroup system.ServiceGroup
|
|
PlantServiceGroup plant.ServiceGroup
|
|
}
|