feat: dirs api

This commit is contained in:
Noah Hsu
2022-07-10 14:09:31 +08:00
parent e28c1e436d
commit efa20cc7bd
2 changed files with 55 additions and 2 deletions

View File

@ -79,6 +79,7 @@ func Init(r *gin.Engine) {
public.GET("/settings", controllers.PublicSettings)
public.Any("/list", controllers.FsList)
public.Any("/get", controllers.FsGet)
public.Any("/dirs", controllers.FsDirs)
// gust can't
fs := api.Group("/fs")