2
0

enter.go 446 B

1234567891011121314151617
  1. package example
  2. import (
  3. api "github.com/flipped-aurora/gin-vue-admin/server/api/v1"
  4. )
  5. type RouterGroup struct {
  6. CustomerRouter
  7. FileUploadAndDownloadRouter
  8. AttachmentCategoryRouter
  9. }
  10. var (
  11. exaCustomerApi = api.ApiGroupApp.ExampleApiGroup.CustomerApi
  12. exaFileUploadAndDownloadApi = api.ApiGroupApp.ExampleApiGroup.FileUploadAndDownloadApi
  13. attachmentCategoryApi = api.ApiGroupApp.ExampleApiGroup.AttachmentCategoryApi
  14. )