You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
275 B
Go

/**
* @Author: wanglin
* @Author: wanglin@vspn.com
* @Date: 2021/10/28 17:22
* @Desc: TODO
*/
package recentcontact
// SessionType 会话类型
type SessionType int
const (
SessionTypeC2C SessionType = 1 // C2C 会话
SessionTypeG2C SessionType = 2 // G2C 会话
)