From 6c2aa6416c1bde404cb2b4088269a9d52e291522 Mon Sep 17 00:00:00 2001 From: wfxey <158351052+wfxey@users.noreply.github.com> Date: Tue, 16 Jul 2024 15:38:11 +0200 Subject: [PATCH] Create __main__.py Signed-off-by: wfxey <158351052+wfxey@users.noreply.github.com> --- diec/__main__.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 diec/__main__.py diff --git a/diec/__main__.py b/diec/__main__.py new file mode 100644 index 0000000..98dcca0 --- /dev/null +++ b/diec/__main__.py @@ -0,0 +1,4 @@ +from .cli import cli + +if __name__ == "__main__": + cli()