Initial upload: ScaffoldForge CLI tool with full codebase, tests, and CI/CD
This commit is contained in:
13
scaffoldforge/templates/python/default/cli.py.j2
Normal file
13
scaffoldforge/templates/python/default/cli.py.j2
Normal file
@@ -0,0 +1,13 @@
|
||||
"""CLI interface for {{ project_name }}.
|
||||
|
||||
Generated from GitHub Issue #{{ issue_number }}
|
||||
"""
|
||||
|
||||
import click
|
||||
|
||||
|
||||
@click.command()
|
||||
@click.option("--option", help="TODO: Describe option")
|
||||
def cli(option: str):
|
||||
"""TODO: Implement CLI command."""
|
||||
click.echo("{{ project_name }} CLI")
|
||||
Reference in New Issue
Block a user