Explorar el Código

Merge branch 'master' of http://git.shengws.com/csx/gdyb

csx hace 3 años
padre
commit
fb204fa596
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      routers/router.go

+ 2 - 1
routers/router.go Ver fichero

@@ -2,6 +2,7 @@ package routers
2 2
 
3 3
 import (
4 4
 	"gdyb/controllers/hb"
5
+	"gdyb/controllers/js"
5 6
 	"gdyb/controllers/sg"
6 7
 	"gdyb/controllers/zh"
7 8
 
@@ -27,6 +28,6 @@ func init() {
27 28
 	hb.HbybRegistRouters()
28 29
 	//sz.SZHisManagerApiRegistRouters()
29 30
 	zh.ZHHisManagerApiRegistRouters()
30
-	//js.JSybRegistRorouters()
31
+	js.JSybRegistRouters()
31 32
 
32 33
 }