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