18 lines
446 B
Go
Raw Normal View History

2025-06-21 00:54:48 +08:00
package example
import (
api "github.com/flipped-aurora/gin-vue-admin/server/api/v1"
)
type RouterGroup struct {
CustomerRouter
FileUploadAndDownloadRouter
AttachmentCategoryRouter
}
var (
exaCustomerApi = api.ApiGroupApp.ExampleApiGroup.CustomerApi
exaFileUploadAndDownloadApi = api.ApiGroupApp.ExampleApiGroup.FileUploadAndDownloadApi
attachmentCategoryApi = api.ApiGroupApp.ExampleApiGroup.AttachmentCategoryApi
)