ソースを参照

Merge branch 'table' into debug

Roc 3 年 前
コミット
500761a9b1
1 ファイル変更6 行追加1 行削除
  1. 6 1
      routers/router.go

+ 6 - 1
routers/router.go

@@ -19,6 +19,11 @@ func init() {
 				&controllers.ChartController{},
 			),
 		),
+		web.NSNamespace("/table",
+			web.NSInclude(
+				&controllers.TableController{},
+			),
+		),
 	)
 	web.AddNamespace(ns)
-}
+}