Files
st/server/router/example/enter.go
2026-02-10 17:48:27 +08:00

18 lines
428 B
Go

package example
import (
api "git.echol.cn/loser/st/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
)