From 44eb3bbe7d3667b645a49ff4fe05c815c37c06dd Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Thu, 19 May 2016 19:47:35 +0100 Subject: [PATCH] Create handler command --- yubi_lock/handle/__init__.py | 0 yubi_lock/handle/cli.py | 7 +++++++ 2 files changed, 7 insertions(+) create mode 100644 yubi_lock/handle/__init__.py create mode 100644 yubi_lock/handle/cli.py diff --git a/yubi_lock/handle/__init__.py b/yubi_lock/handle/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/yubi_lock/handle/cli.py b/yubi_lock/handle/cli.py new file mode 100644 index 0000000..76b10d7 --- /dev/null +++ b/yubi_lock/handle/cli.py @@ -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