lckt-server/router/example/enter.go
2025-04-09 12:17:33 +08:00

18 lines
423 B
Go

package example
import (
api "git.echol.cn/loser/lckt/api/v1"
)
type RouterGroup struct {
CustomerRouter
FileUploadAndDownloadRouter
AttachmentCategoryRouter
}
var (
exaCustomerApi = api.ApiGroupApp.ExampleApiGroup.CustomerApi
exaFileUploadAndDownloadApi = api.ApiGroupApp.ExampleApiGroup.FileUploadAndDownloadApi
attachmentCategoryApi = api.ApiGroupApp.ExampleApiGroup.AttachmentCategoryApi
)