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

  1. package router
  2. import (
  3. "github.com/gin-gonic/gin"
  4. "main/controller/api"
  5. "main/middleware"
  6. )
  7. func InitFileUploadAndDownloadRouter(Router *gin.Engine) {
  8. FileUploadAndDownloadGroup := Router.Group("fileUploadAndDownload").Use(middleware.JWTAuth())
  9. {
  10. FileUploadAndDownloadGroup.POST("/upload", api.UploadFile) // 上传文件
  11. FileUploadAndDownloadGroup.POST("/getFileList", api.GetFileList) // 获取上传文件列表
  12. }
  13. }