mirror of
https://github.com/Luzifer/twitch-bot.git
synced 2024-11-08 16:20:02 +00:00
20 lines
417 B
Go
20 lines
417 B
Go
package main
|
|
|
|
import "github.com/Luzifer/twitch-bot/twitch"
|
|
|
|
var (
|
|
botDefaultScopes = []string{
|
|
twitch.ScopeChatRead,
|
|
twitch.ScopeChatEdit,
|
|
twitch.ScopeWhisperRead,
|
|
twitch.ScopeWhisperEdit,
|
|
twitch.ScopeChannelModerate,
|
|
twitch.ScopeChannelManageBroadcast,
|
|
twitch.ScopeChannelEditCommercial,
|
|
twitch.ScopeV5ChannelEditor,
|
|
}
|
|
|
|
channelDefaultScopes = []string{
|
|
twitch.ScopeChannelReadRedemptions,
|
|
}
|
|
)
|