Files
Go-Web-Template/server/api/v1/common/enter.go

14 lines
364 B
Go

package common
import "git.echol.cn/loser/Go-Web-Template/server/service"
type ApiGroup struct {
AttachmentCategoryApi
FileUploadAndDownloadApi
}
var (
attachmentCategoryService = service.ServiceGroupApp.CommonServiceGroup.AttachmentCategoryService
fileUploadAndDownloadService = service.ServiceGroupApp.CommonServiceGroup.FileUploadAndDownloadService
)