From 9c32f33d9f68eb445eb33bed9d5a56a034d3025a Mon Sep 17 00:00:00 2001 From: tyler Date: Sat, 18 May 2024 13:08:42 -0400 Subject: [PATCH] Added rumble chat type constants --- chat.go | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/chat.go b/chat.go index f09d32a..eff8078 100644 --- a/chat.go +++ b/chat.go @@ -18,6 +18,17 @@ import ( "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 { ChannelID int ChatID string