123456789101112131415161718192021 |
- package service
- import (
- "server/service/admin"
- "server/service/crm"
- "server/service/example"
- "server/service/storehouse"
- "server/service/system"
- "server/service/workflow"
- )
- type ServiceGroup struct {
- SystemServiceGroup system.ServiceGroup
- ExampleServiceGroup example.ServiceGroup
- AdminServiceGroup admin.ServiceGroup
- WorkflowServiceGroup workflow.ServiceGroup
- StorehouseServiceGroup storehouse.ServiceGroup
- CRMServiceGroup crm.ServiceGroup
- }
- var ServiceGroupApp = new(ServiceGroup)
|