mirror of
https://github.com/Luzifer/twitch-bot.git
synced 2024-11-08 16:20:02 +00:00
22 lines
559 B
Go
22 lines
559 B
Go
package main
|
|
|
|
import "github.com/Luzifer/twitch-bot/v2/pkg/twitch"
|
|
|
|
var (
|
|
channelDefaultScopes = []string{
|
|
twitch.ScopeChannelEditCommercial,
|
|
twitch.ScopeChannelManageBroadcast,
|
|
twitch.ScopeChannelReadRedemptions,
|
|
twitch.ScopeChannelManageRaids,
|
|
}
|
|
|
|
botDefaultScopes = append(channelDefaultScopes,
|
|
twitch.ScopeChatEdit,
|
|
twitch.ScopeChatRead,
|
|
twitch.ScopeModeratorManageAnnoucements,
|
|
twitch.ScopeModeratorManageBannedUsers,
|
|
twitch.ScopeModeratorManageChatMessages,
|
|
twitch.ScopeModeratorManageChatSettings,
|
|
twitch.ScopeWhisperRead,
|
|
)
|
|
)
|