Files
Go-Web-Template/server/router/common/enter.go

16 lines
347 B
Go

package common
import (
api "git.echol.cn/loser/Go-Web-Template/server/api/v1"
)
type RouterGroup struct {
AttachmentCategoryRouter
FileUploadAndDownloadRouter
}
var (
attachmentCategoryApi = api.ApiGroupApp.CommonApiGroup.AttachmentCategoryApi
exaFileUploadAndDownloadApi = api.ApiGroupApp.CommonApiGroup.FileUploadAndDownloadApi
)