bygdata/service/enter.go
2026-02-15 00:23:03 +08:00

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
}