enter.go 456 B

12345678910111213141516171819
  1. package service
  2. import (
  3. "server/service/admin"
  4. "server/service/example"
  5. "server/service/storehouse"
  6. "server/service/system"
  7. "server/service/workflow"
  8. )
  9. type ServiceGroup struct {
  10. SystemServiceGroup system.ServiceGroup
  11. ExampleServiceGroup example.ServiceGroup
  12. AdminServiceGroup admin.ServiceGroup
  13. WorkflowServiceGroup workflow.ServiceGroup
  14. StorehouseServiceGroup storehouse.ServiceGroup
  15. }
  16. var ServiceGroupApp = new(ServiceGroup)