mirror of
https://github.com/Luzifer/twitch-bot.git
synced 2024-11-10 01:00:05 +00:00
20 lines
386 B
Go
20 lines
386 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,
|
||
|
}
|
||
|
|
||
|
channelDefaultScopes = []string{
|
||
|
twitch.ScopeChannelReadRedemptions,
|
||
|
}
|
||
|
)
|