Browse Source

文章发布模块的开发

xiaoming_global 5 years ago
parent
commit
a10bc609ff
1 changed files with 2 additions and 9 deletions
  1. 2 9
      routers/router.go

+ 2 - 9
routers/router.go View File

@@ -4,12 +4,12 @@ import (
4 4
 	"SCRM/controllers/admin_user"
5 5
 	"SCRM/controllers/global"
6 6
 	"SCRM/controllers/login"
7
-	"SCRM/controllers/members"
8 7
 	"SCRM/controllers/role"
9 8
 
10 9
 	"github.com/astaxie/beego"
11 10
 	"github.com/astaxie/beego/plugins/cors"
12 11
 	"SCRM/controllers/article"
12
+	"SCRM/controllers/members"
13 13
 )
14 14
 
15 15
 func init() {
@@ -25,13 +25,6 @@ func init() {
25 25
 	admin_user.RegisterRouters()
26 26
 	login.RegisterRouters()
27 27
 	role.RegisterRouters()
28
-<<<<<<< .mine
29 28
 	article.RegisterRouters()
30
-
31
-	//ÎÄÕ¹ÜÀíÄ£¿é
32
-=======
33
-	members.RegisterRouters()
34
-
35
-
36
->>>>>>> .theirs
29
+    members.RegisterRouters()
37 30
 }