Add source files: core parser module
Some checks failed
CI / test (push) Has been cancelled

This commit is contained in:
2026-02-02 19:53:59 +00:00
parent 7549da01ad
commit df0d3fbcba

12
src/__main__.py Normal file
View File

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