Added rumble chat type constants

This commit is contained in:
tyler 2024-05-18 13:08:42 -04:00
parent ba26735378
commit 9c32f33d9f

11
chat.go
View file

@ -18,6 +18,17 @@ import (
"gopkg.in/cenkalti/backoff.v1" "gopkg.in/cenkalti/backoff.v1"
) )
const (
ChatTypeInit = "init"
ChatTypeMessages = "messages"
ChatTypeMuteUsers = "mute_users"
ChatTypeDeleteMessages = "delete_messages"
ChatTypeSubscriber = "locals_supporter"
ChatTypeRaiding = "raid_confirmed"
ChatTypePinMessage = "pin_message"
ChatTypeUnpinMessage = "unpin_message"
)
type ChatInfo struct { type ChatInfo struct {
ChannelID int ChannelID int
ChatID string ChatID string