Files
2026-04-28 10:29:02 +08:00

16 lines
312 B
Go

package service
import (
"sundynix-go/service/codegen"
"sundynix-go/service/order"
"sundynix-go/service/system"
)
var ServiceGroupApp = new(ServiceGroup)
type ServiceGroup struct {
SystemServiceGroup system.ServiceGroup
CodegenServiceGroup codegen.ServiceGroup
OrderServiceGroup order.ServiceGroup
}