initial commit
This commit is contained in:
10
internal/workspace/routes.go
Normal file
10
internal/workspace/routes.go
Normal file
@@ -0,0 +1,10 @@
|
||||
package workspace
|
||||
|
||||
import (
|
||||
"github.com/labstack/echo/v4"
|
||||
)
|
||||
|
||||
func DefineRoutes(g *echo.Group) {
|
||||
g.GET("/workspaces", fetchAllWorkspaces)
|
||||
g.POST("/workspaces/:workspaceName", createWorkspace)
|
||||
}
|
Reference in New Issue
Block a user