Add __main__.py

This allows launching toot by:

  python -m toot
This commit is contained in:
Ivan Habunek 2023-06-30 11:02:13 +02:00
parent de087b414c
commit 83b7f25678
No known key found for this signature in database
GPG Key ID: F5F0623FF5EBCB3D
1 changed files with 3 additions and 0 deletions

3
toot/__main__.py Normal file
View File

@ -0,0 +1,3 @@
from .console import main
main()