Initial commit: Requirements to Gherkin CLI Converter

This commit is contained in:
Bot
2026-02-02 12:15:36 +00:00
commit ec3ea3da33
29 changed files with 2803 additions and 0 deletions

14
src/nl2gherkin/main.py Normal file
View File

@@ -0,0 +1,14 @@
"""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()