添加用户缓存及更新,添加配置文件增删改查接口,添加文件功能.添加配置文件添加请求

This commit is contained in:
junleea 2025-01-03 16:38:23 +08:00
parent e1ae537386
commit f1695df463
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ func SetUpFileGroup(router *gin.Engine) {
fileGroup.POST("/config_update", UpdateConfigFile)
fileGroup.POST("/config_search", SearchConfigFile)
fileGroup.POST("/upload", UploadFileV2)
fileGroup.GET("/:filename", GetFile)
fileGroup.GET("/general/:filename", GetFile)
}