removed depreceated code, and logs

This commit is contained in:
2026-05-10 13:26:11 +01:00
parent 4726582379
commit ee746d0abe
5 changed files with 41 additions and 12 deletions

9
main.py Normal file
View File

@@ -0,0 +1,9 @@
"""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__')