package define import "git.ikuban.com/server/pw-protobuf/api/common" var ( MatchRelationRoom = "room" MatchRelationMatch = "match" ) var ( TypeUserNew = "new" // 新客 TypeUserPay = "pay" // 付费 ) var ( VoiceAward = int64(20) PictureAward = int64(30) ) var ( ChatMessageSuccess = "success" // 成功 ChatMessageFail = "fail" // 失败 ChatMessageViolation = "violation" // 违规 ) var ( ChatTypeText = "text" // 文本 ChatTypeVoice = "voice" // 音频 ChatTypePicture = "picture" // 图片 ChatTypeScrip = "scrip" // 小纸条 ChatTypeEmoticon = "emoticon" // 表情包 ) var ( Chat = "chat" // 日常对话 TWQH = "twqh" // 土味情话 ZNL = "znl" // 正能量 GoodMorning = "morning" // 早安 GoodNight = "night" // 晚安 ) var ( Disapprove = "disapprove" // 斗图 Pet = "pet" // 萌宠 DayChat = "dayChat" // 日常聊天 ShowLove = "showLove" // 示爱 Hot = "hot" // 最火 ) var ChatTopicList = []*common.MemeTitle{ { Name: "日常对话", Type: Chat, }, { Name: "土味情话", Type: TWQH, }, { Name: "正能量", Type: ZNL, }, { Name: "早安", Type: GoodMorning, }, { Name: "晚安", Type: GoodNight, }, } var MemeTitleList = []*common.MemeTitle{ { Name: "日常聊天", Type: DayChat, }, { Name: "最火", Type: Hot, }, { Name: "萌宠", Type: Pet, }, { Name: "示爱", Type: ShowLove, }, { Name: "斗图", Type: Disapprove, }, }