You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
426 B

  1. package service
  2. import (
  3. "github.com/flipped-aurora/gin-vue-admin/server/service/autocode"
  4. "github.com/flipped-aurora/gin-vue-admin/server/service/example"
  5. "github.com/flipped-aurora/gin-vue-admin/server/service/system"
  6. )
  7. type ServiceGroup struct {
  8. SystemServiceGroup system.ServiceGroup
  9. ExampleServiceGroup example.ServiceGroup
  10. AutoCodeServiceGroup autocode.ServiceGroup
  11. }
  12. var ServiceGroupApp = new(ServiceGroup)