| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 | package defineimport "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,	},}
 |