aboutsummaryrefslogtreecommitdiffstats
path: root/bot/__main__.py
blob: a3b68ec143bd0cc44056bbc57cfdef9dd160fde0 (plain) (blame)
1
2
3
4
5
6
7
8
import logging

from bot.constants import Client, bot

log = logging.getLogger(__name__)

bot.load_extension("bot.seasons")
bot.run(Client.token)