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.
15 lines
438 B
15 lines
438 B
package router
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
"main/controller/api"
|
|
"main/middleware"
|
|
)
|
|
|
|
func InitFileUploadAndDownloadRouter(Router *gin.Engine) {
|
|
FileUploadAndDownloadGroup := Router.Group("fileUploadAndDownload").Use(middleware.JWTAuth())
|
|
{
|
|
FileUploadAndDownloadGroup.POST("/upload", api.UploadFile) // 上传文件
|
|
FileUploadAndDownloadGroup.POST("/getFileList", api.GetFileList) // 获取上传文件列表
|
|
}
|
|
}
|