enter.go 666 B

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