From c280c5f6a06e081566f6d1af51c9db91e055d9d9 Mon Sep 17 00:00:00 2001 From: Trygve Date: Mon, 20 Nov 2023 15:00:32 +0100 Subject: [PATCH] La til __main__ entrypoint --- otime/__main__.py | 2 ++ otime/{main.py => cli.py} | 0 2 files changed, 2 insertions(+) create mode 100644 otime/__main__.py rename otime/{main.py => cli.py} (100%) diff --git a/otime/__main__.py b/otime/__main__.py new file mode 100644 index 0000000..d49c138 --- /dev/null +++ b/otime/__main__.py @@ -0,0 +1,2 @@ +from cli import main +main() \ No newline at end of file diff --git a/otime/main.py b/otime/cli.py similarity index 100% rename from otime/main.py rename to otime/cli.py