feat: implement ssh forwarding

This commit is contained in:
2024-11-17 18:10:35 +00:00
parent a7933f8b06
commit 45bfbe093a
21 changed files with 1175 additions and 296 deletions

View File

@@ -6,5 +6,6 @@ import (
func DefineRoutes(g *echo.Group) {
g.GET("/workspaces", fetchAllWorkspaces)
g.POST("/workspaces/:workspaceName", createWorkspace)
g.POST("/workspaces/:workspaceName", updateOrCreateWorkspace)
g.DELETE("/workspaces/:workspaceName", deleteWorkspace)
}