16 lines
312 B
Go
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
|
|
}
|