Files
Go-Web-Template/server/api/v1/common/enter.go
2026-04-08 12:19:24 +08:00

14 lines
369 B
Go

package common
import "github.com/flipped-aurora/gin-vue-admin/server/service"
type ApiGroup struct {
AttachmentCategoryApi
FileUploadAndDownloadApi
}
var (
attachmentCategoryService = service.ServiceGroupApp.CommonServiceGroup.AttachmentCategoryService
fileUploadAndDownloadService = service.ServiceGroupApp.CommonServiceGroup.FileUploadAndDownloadService
)