| 1234567891011121314151617181920212223242526 | package definevar (	TypeUserNew = "new" // 新客	TypeUserPay = "pay" // 付费)var (	ChatMessageSuccess   = "success"   // 成功	ChatMessageFail      = "fail"      // 失败	ChatMessageViolation = "violation" // 违规)var (	ChatTypeText    = "text"    // 文本	ChatTypeVoice   = "voice"   // 音频	ChatTypePicture = "picture" // 图片)var (	Disapprove = "disapprove" // 怼人	Pet        = "pet"        // 萌宠	DayChat    = "dayChat"    // 日常聊天	ShowLove   = "showLove"   // 示爱	Hot        = "hot"        // 最火)
 |