2021-12-31 12:42:37 +00:00
|
|
|
package main
|
|
|
|
|
2022-09-10 11:39:07 +00:00
|
|
|
import "github.com/Luzifer/twitch-bot/pkg/twitch"
|
2021-12-31 12:42:37 +00:00
|
|
|
|
|
|
|
var (
|
2022-04-23 15:24:49 +00:00
|
|
|
channelDefaultScopes = []string{
|
|
|
|
twitch.ScopeChannelEditCommercial,
|
|
|
|
twitch.ScopeChannelManageBroadcast,
|
|
|
|
twitch.ScopeChannelReadRedemptions,
|
|
|
|
}
|
|
|
|
|
|
|
|
botDefaultScopes = append(channelDefaultScopes,
|
2021-12-31 12:42:37 +00:00
|
|
|
twitch.ScopeChatRead,
|
|
|
|
twitch.ScopeChatEdit,
|
|
|
|
twitch.ScopeWhisperRead,
|
|
|
|
twitch.ScopeWhisperEdit,
|
|
|
|
twitch.ScopeChannelModerate,
|
2022-04-23 15:24:49 +00:00
|
|
|
)
|
2021-12-31 12:42:37 +00:00
|
|
|
)
|