Files
Go-Web-Template/server/router/example/enter.go
2026-04-07 09:03:48 +08:00

20 lines
435 B
Go

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