This commit is contained in:
2018-11-06 12:31:49 +01:00
commit d6ff222741
26 changed files with 3105 additions and 0 deletions

44
routers/router.go Normal file
View File

@@ -0,0 +1,44 @@
// @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 (
"multitenantStack/controllers"
"github.com/astaxie/beego"
)
func init() {
ns := beego.NewNamespace("/v1",
beego.NSNamespace("/contact",
beego.NSInclude(
&controllers.ContactController{},
),
),
beego.NSNamespace("/company_data",
beego.NSInclude(
&controllers.CompanyDataController{},
),
),
beego.NSNamespace("/post",
beego.NSInclude(
&controllers.PostController{},
),
),
beego.NSNamespace("/company_user",
beego.NSInclude(
&controllers.CompanyUserController{},
),
),
)
beego.AddNamespace(ns)
}