(cmd, uuId, msgId, message string)
| 37 | } |
| 38 | |
| 39 | func getTextMsgData(cmd, uuId, msgId, message string) string { |
| 40 | textMsg := NewTestMsg(uuId, message) |
| 41 | head := NewResponseHead(msgId, cmd, common.OK, "Ok", textMsg) |
| 42 | |
| 43 | return head.String() |
| 44 | } |
| 45 | |
| 46 | // 文本消息 |
| 47 | func GetMsgData(uuId, msgId, cmd, message string) string { |
no test coverage detected