From af3263ea057ea638dd0d190b85f654f45cd14d59 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Thu, 5 Feb 2026 17:13:53 +0000 Subject: [PATCH] Initial upload: Add repohealth-cli project with CI/CD workflow --- src/repohealth/__main__.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/repohealth/__main__.py diff --git a/src/repohealth/__main__.py b/src/repohealth/__main__.py new file mode 100644 index 0000000..233ee0d --- /dev/null +++ b/src/repohealth/__main__.py @@ -0,0 +1,6 @@ +"""Entry point for the RepoHealth CLI.""" + +from repohealth.cli.cli import main + +if __name__ == "__main__": + main()