From ef9c4807140bc79f5fd76e551d6fcb2b10a3cfb7 Mon Sep 17 00:00:00 2001 From: Rafael Moraes <50295204+glomatico@users.noreply.github.com> Date: Thu, 26 Feb 2026 14:03:38 -0300 Subject: [PATCH] Add __main__ to expose CLI entrypoint --- votify/__main__.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 votify/__main__.py diff --git a/votify/__main__.py b/votify/__main__.py new file mode 100644 index 0000000..34c69a1 --- /dev/null +++ b/votify/__main__.py @@ -0,0 +1,3 @@ +from .cli.cli import main + +main()