Files
Open-Assistant/discord-bot/bot/__main__.py
T
2023-01-02 00:01:45 +00:00

17 lines
266 B
Python

"""Entry point for the bot."""
import logging
import os
from bot.bot import bot
logger = logging.getLogger(__name__)
if __name__ == "__main__":
if os.name != "nt":
import uvloop
uvloop.install()
logger.info("Starting bot")
bot.run()