forked from ISPsystem/isp-maintenance
14 lines
223 B
Python
14 lines
223 B
Python
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)
|