chore: add handlers for rename dir ans scripts
ci-agent / build (push) Failing after 2m50s

This commit is contained in:
d3m0k1d
2026-04-05 03:29:36 +03:00
parent 534d6aa738
commit 1f6908900b
5 changed files with 316 additions and 0 deletions
+3
View File
@@ -265,6 +265,9 @@ func main() {
scriptsGroup.POST("/folder", scriptManageHandlers.CreateFolder)
scriptsGroup.DELETE("/folder", scriptManageHandlers.DeleteFolder)
// Rename script or folder
scriptsGroup.POST("/rename", scriptManageHandlers.Rename)
// Get script by path
scriptsGroup.GET("/by-path", scriptManageHandlers.GetScriptByPath)
}