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

+ 5 - 0
routers/router.go

@@ -282,6 +282,11 @@ func init() {
 				&controllers.UserLoginAuthController{},
 			),
 		),
+		web.NSNamespace("/meeting_probabilities",
+			web.NSInclude(
+				&controllers.MeetingProbabilitiesController{},
+			),
+		),
 	)
 	web.AddNamespace(ns)
 }