mirror of
https://github.com/42wim/matterbridge.git
synced 2026-04-01 21:17:59 +02:00
8 lines
138 B
Go
8 lines
138 B
Go
package slack
|
|
|
|
// Group contains all the information for a group
|
|
type Group struct {
|
|
GroupConversation
|
|
IsGroup bool `json:"is_group"`
|
|
}
|