This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
yubi-lock/yubi_lock/handle/cli.py

8 lines
186 B
Python
Raw Normal View History

2016-05-19 19:47:35 +01:00
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