Files
jx-callback/routers/router.go
2018-06-12 14:12:12 +08:00

24 lines
524 B
Go

// @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 (
"git.rosy.net.cn/jx-callback/controllers"
"github.com/astaxie/beego"
)
func init() {
ns := beego.NewNamespace("/djsw",
beego.NSInclude(
&controllers.JDOrderController{},
),
)
beego.AddNamespace(ns)
}