mirror of
https://git.isptech.ru/ISPsystem/isp-maintenance.git
synced 2025-02-01 19:00:52 +01:00
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)
|