From 83b7f2567890a19e00822ecddaf4a7ce2451e78e Mon Sep 17 00:00:00 2001 From: Ivan Habunek Date: Fri, 30 Jun 2023 11:02:13 +0200 Subject: [PATCH] Add __main__.py This allows launching toot by: python -m toot --- toot/__main__.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 toot/__main__.py diff --git a/toot/__main__.py b/toot/__main__.py new file mode 100644 index 0000000..abbb9e2 --- /dev/null +++ b/toot/__main__.py @@ -0,0 +1,3 @@ +from .console import main + +main()