Files
openapi-mock-generator/src/__main__.py
7000pctAUTO df0d3fbcba
Some checks failed
CI / test (push) Has been cancelled
Add source files: core parser module
2026-02-02 19:53:59 +00:00

13 lines
200 B
Python

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