Initial upload: Project Scaffold CLI with multi-language templates and CI/CD
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
#!/usr/bin/env python
|
||||
"""Main CLI entry point."""
|
||||
|
||||
import click
|
||||
|
||||
|
||||
@click.command()
|
||||
def main():
|
||||
"""Main entry point for {{ project_name }}."""
|
||||
click.echo("Welcome to {{ project_name }}!")
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
Reference in New Issue
Block a user