15 lines
197 B
Python
15 lines
197 B
Python
"""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()
|