From 2937e0afd08e2ca7a7122eeaa779ea6d62f15fa3 Mon Sep 17 00:00:00 2001 From: Yazeed Almuqwishi Date: Sun, 20 Jun 2021 15:26:35 +0300 Subject: [PATCH] Added __main__.py for cli --- gjf/__main__.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 gjf/__main__.py diff --git a/gjf/__main__.py b/gjf/__main__.py new file mode 100644 index 0000000..693d179 --- /dev/null +++ b/gjf/__main__.py @@ -0,0 +1,3 @@ +from gjf.cli import main + +main()