blob: 5d4056af2cd831ac3cc57b20fdef50ba503e722d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import logging
from bot.bot import bot
from bot.constants import Client, STAFF_ROLES, WHITELISTED_CHANNELS
from bot.seasons import get_extensions
from bot.utils.decorators import in_channel_check
log = logging.getLogger(__name__)
bot.add_check(in_channel_check(*WHITELISTED_CHANNELS, bypass_roles=STAFF_ROLES))
for ext in get_extensions():
bot.load_extension(ext)
bot.load_extension("bot.branding")
bot.run(Client.token)
|