You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
1006 B
26 lines
1006 B
package routers |
|
|
|
import ( |
|
handler "server/modules/customer/handler/guser" |
|
|
|
"github.com/gin-gonic/gin" |
|
) |
|
|
|
func guser(e *gin.Engine) { |
|
e.POST("/guser/list", handler.GetGameUserList) |
|
e.POST("/guser/activeUserList", handler.ActiveUserList) |
|
|
|
e.POST("/guser/info", handler.GetGameUserInfo) |
|
e.POST("/guser/allBalance", handler.GetGameUserAllBalance) |
|
e.POST("/guser/playData", handler.GetGameUserPlayData) |
|
e.POST("/guser/playDetail", handler.GetGameUserPlayDetail) |
|
e.POST("/guser/rechargeHistory", handler.GetGameUserRechargeHistory) |
|
e.POST("/guser/withdrawHistory", handler.GetGameUserWithdrawHistory) |
|
e.POST("/guser/controlBalance", handler.GetGameUserControlBalance) |
|
e.POST("/guser/controlCardData", handler.ControlCardData) |
|
e.POST("/guser/editGold", handler.EditGameUserGold) |
|
e.POST("/guser/editStatus", handler.EditGameUserStatus) |
|
e.POST("/guser/addUserTag", handler.AddUserTag) |
|
e.POST("/guser/deleteUserTag", handler.AddUserTag) |
|
e.POST("/guser/addUserBlackList", handler.AddUserBlackList) |
|
}
|
|
|