feat: obj get api

This commit is contained in:
Noah Hsu
2022-06-27 21:15:39 +08:00
parent db6b5f8950
commit c8f10703b7
3 changed files with 56 additions and 4 deletions

View File

@ -49,7 +49,8 @@ func Init(r *gin.Engine) {
public := api.Group("/public")
public.GET("/settings", controllers.PublicSettings)
public.GET("/list", controllers.List)
public.GET("/list", controllers.FsList)
public.GET("/get", controllers.FsGet)
}
func Cors(r *gin.Engine) {