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()