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
451 B

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