14 lines
364 B
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
|
|
)
|