- elm callback basic.

This commit is contained in:
gazebo
2018-06-14 17:50:58 +08:00
parent 4854395ef3
commit ad1a6ab5c4
12 changed files with 273 additions and 48 deletions

View File

@@ -19,5 +19,10 @@ func init() {
&controllers.JDOrderController{},
),
)
beego.AddNamespace(ns)
ns2 := beego.NewNamespace("/elem",
beego.NSInclude(
&controllers.ELMOrderController{},
),
)
beego.AddNamespace(ns, ns2)
}