enter.go 820 B

12345678910111213141516171819202122232425262728
  1. package service
  2. import (
  3. "log-server/service/card"
  4. "log-server/service/dataStatistics"
  5. "log-server/service/example"
  6. "log-server/service/fileManager"
  7. "log-server/service/log"
  8. "log-server/service/rentComputer"
  9. "log-server/service/system"
  10. "log-server/service/task"
  11. "log-server/service/typeManage"
  12. )
  13. type ServiceGroup struct {
  14. SystemServiceGroup system.ServiceGroup
  15. ExampleServiceGroup example.ServiceGroup
  16. LogServiceGroup log.ServiceGroup
  17. TypeServiceGroup typeManage.ServiceGroup
  18. TaskServiceGroup task.ServiceGroup
  19. RentComputerServiceGroup rentComputer.ServiceGroup
  20. DataStatisticsServiceGroup dataStatistics.ServiceGroup
  21. FileManagerServiceGroup fileManager.ServiceGroup
  22. CardServiceGroup card.ServiceGroup
  23. }
  24. var ServiceGroupApp = new(ServiceGroup)