7 lines
186 B
Python
7 lines
186 B
Python
import click
|
|
|
|
|
|
@click.command('handle', short_help='Handler for inserting and removing drives')
|
|
@click.argument('type', type=click.Choice(["enable", "disable"]))
|
|
def cli(type):
|
|
pass
|