diff --git a/src/__main__.py b/src/__main__.py new file mode 100644 index 0000000..977025f --- /dev/null +++ b/src/__main__.py @@ -0,0 +1,12 @@ +"""Entry point for the OpenAPI Mock Generator CLI.""" + +from src.cli.commands import cli + + +def main() -> None: + """Main entry point for the CLI.""" + cli() + + +if __name__ == "__main__": + main()