|
|
|
@ -77,7 +77,12 @@ func UserSendMsg(c *gin.Context) {
|
|
|
|
|
|
|
|
|
|
log.Info("", "", "api UserSendMsg call, api call rpc...")
|
|
|
|
|
|
|
|
|
|
reply, _ := client.UserSendMsg(context.Background(), pbData)
|
|
|
|
|
reply, err := client.UserSendMsg(context.Background(), pbData)
|
|
|
|
|
if err != nil {
|
|
|
|
|
log.NewError(params.OperationID, "UserSendMsg rpc failed, ", params, err.Error())
|
|
|
|
|
c.JSON(http.StatusBadRequest, gin.H{"errCode": 401, "errMsg": "UserSendMsg rpc failed, " + err.Error()})
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
log.Info("", "", "api UserSendMsg call end..., [data: %s] [reply: %s]", pbData.String(), reply.String())
|
|
|
|
|
|
|
|
|
|
c.JSON(http.StatusOK, gin.H{
|
|
|
|
|