init oc-workspace

This commit is contained in:
mr
2024-07-26 10:37:13 +02:00
commit 60c25b1352
32 changed files with 1639 additions and 0 deletions

31
routers/router.go Normal file
View File

@@ -0,0 +1,31 @@
// @APIVersion 1.0.0
// @Title beego Test API
// @Description beego has a very cool tools to autogenerate documents for your API
// @Contact astaxie@gmail.com
// @TermsOfServiceUrl http://beego.me/
// @License Apache 2.0
// @LicenseUrl http://www.apache.org/licenses/LICENSE-2.0.html
package routers
import (
"oc-workspace/controllers"
beego "github.com/beego/beego/v2/server/web"
)
func init() {
ns := beego.NewNamespace("/oc/",
beego.NSNamespace("/workspace",
beego.NSInclude(
&controllers.WorkspaceController{},
),
),
beego.NSNamespace("/version",
beego.NSInclude(
&controllers.VersionController{},
),
),
)
beego.AddNamespace(ns)
}