13 lines
431 B
Go
13 lines
431 B
Go
package common
|
|
|
|
// GroupType 群类型
|
|
type GroupType string
|
|
|
|
const (
|
|
GroupTypeWork GroupType = "Work" // Work(好友工作群)
|
|
GroupTypePublic GroupType = "Public" // Public(陌生人社交群)
|
|
GroupTypeMeeting GroupType = "Meeting" // Meeting(临时会议群)
|
|
GroupTypeAVChatRoom GroupType = "AVChatRoom" // AVChatRoom(直播群)
|
|
GroupTypeCommunity GroupType = "Community" // Community(社群)
|
|
)
|