10 lines
212 B
Python
10 lines
212 B
Python
"""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__')
|