chat.go 339 B

123456789101112131415161718
  1. package define
  2. var (
  3. TypeUserNew = "new"
  4. TypeUserPay = "pay"
  5. )
  6. var (
  7. ChatMessageSuccess = "success" // 成功
  8. ChatMessageFail = "fail" // 失败
  9. ChatMessageViolation = "violation" // 违规
  10. )
  11. var (
  12. ChatTypeText = "text" // 文本
  13. ChatTypeVoice = "voice" // 音频
  14. ChatTypePicture = "picture" // 图片
  15. )