From df0d3fbcbabecb134c8cb831861c11b7a88533e2 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Mon, 2 Feb 2026 19:53:59 +0000 Subject: [PATCH] Add source files: core parser module --- src/__main__.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/__main__.py 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()