enter.go 477 B

123456789101112131415
  1. package example
  2. import "github.com/flipped-aurora/gin-vue-admin/server/service"
  3. type ApiGroup struct {
  4. CustomerApi
  5. FileUploadAndDownloadApi
  6. AttachmentCategoryApi
  7. }
  8. var (
  9. customerService = service.ServiceGroupApp.ExampleServiceGroup.CustomerService
  10. fileUploadAndDownloadService = service.ServiceGroupApp.ExampleServiceGroup.FileUploadAndDownloadService
  11. attachmentCategoryService = service.ServiceGroupApp.ExampleServiceGroup.AttachmentCategoryService
  12. )