Create handler command
This commit is contained in:
parent
df1de585f6
commit
44eb3bbe7d
2 changed files with 7 additions and 0 deletions
0
yubi_lock/handle/__init__.py
Normal file
0
yubi_lock/handle/__init__.py
Normal file
7
yubi_lock/handle/cli.py
Normal file
7
yubi_lock/handle/cli.py
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
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
|
Reference in a new issue