Browse Source

no message

xingzai 1 year ago
parent
commit
ab9056c6f6
1 changed files with 5 additions and 0 deletions
  1. 5 0
      routers/router.go

+ 5 - 0
routers/router.go

@@ -108,6 +108,11 @@ func init() {
 				&controllers.BaseAuthMobileController{},
 			),
 		),
+		web.NSNamespace("/advice",
+			web.NSInclude(
+				&controllers.AdviceController{},
+			),
+		),
 	)
 	web.AddNamespace(ns)
 }