"""Main entry point for the NL2Gherkin CLI.""" from nl2gherkin.cli.commands import cli def main() -> None: """Entry point for the CLI.""" cli() if __name__ == "__main__": main()