Add: core cli, lazy_group, example apps

This commit is contained in:
2024-02-11 03:01:18 +09:00
parent c8c7060201
commit c776632195
13 changed files with 142 additions and 15 deletions

View File

@@ -0,0 +1,13 @@
import click
@click.group(help='nodes command for lazy example')
def cli():
pass
@cli.command(name='list')
def nodes_list():
click.echo('NODES LIST: etc...')
for num in range(1, 10):
click.echo(num)