You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
512 B
16 lines
512 B
package router
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
"main/controller/api"
|
|
)
|
|
|
|
func InitFileUploadAndDownloadRouter(Router *gin.Engine) {
|
|
FileUploadAndDownloadGroup := Router.Group("fileUploadAndDownload")
|
|
//.Use(middleware.JWTAuth())
|
|
{
|
|
FileUploadAndDownloadGroup.POST("/upload", api.UploadFile) // 上传文件
|
|
FileUploadAndDownloadGroup.POST("/getFileList", api.GetFileList) // 获取上传文件列表
|
|
FileUploadAndDownloadGroup.POST("/deleteFile", api.DeleteFile) // 删除指定文件
|
|
}
|
|
}
|