소스 검색

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

csx 3 년 전
부모
커밋
fb204fa596
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      routers/router.go

+ 2 - 1
routers/router.go 파일 보기

@@ -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
 }