13 lines
200 B
Python
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()
|