Browse Source

日志输出

kobe6258 2 weeks ago
parent
commit
5afce0877b
1 changed files with 5 additions and 0 deletions
  1. 5 0
      routers/router.go

+ 5 - 0
routers/router.go

@@ -19,6 +19,11 @@ func init() {
 				&controllers.YongyiController{},
 			),
 		),
+		web.NSNamespace("/rzd",
+			web.NSInclude(
+				&controllers.RzdController{},
+			),
+		),
 	)
 	web.AddNamespace(ns)
 }