enter.go 233 B

12345678910111213
  1. package service
  2. import (
  3. "server/service/example"
  4. "server/service/system"
  5. )
  6. type ServiceGroup struct {
  7. SystemServiceGroup system.ServiceGroup
  8. ExampleServiceGroup example.ServiceGroup
  9. }
  10. var ServiceGroupApp = new(ServiceGroup)