12345678910111213141516171819 |
- package service
- import (
- "server/service/admin"
- "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
- }
- var ServiceGroupApp = new(ServiceGroup)
|