"""Entrypoint to run the bot. This simply runs `bot.py` as a script so you can start the bot with `python main.py`. """ import runpy if __name__ == '__main__': runpy.run_path('bot.py', run_name='__main__')