From c06e3a0edfd8699edf1ea99a8d4354fb73fc5f22 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Mon, 2 Feb 2026 21:31:32 +0000 Subject: [PATCH] Add core CLI and configuration modules --- depaudit/main.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 depaudit/main.py diff --git a/depaudit/main.py b/depaudit/main.py new file mode 100644 index 0000000..874abbe --- /dev/null +++ b/depaudit/main.py @@ -0,0 +1,5 @@ +import sys +from depaudit.cli import main + +if __name__ == "__main__": + sys.exit(main())