summaryrefslogtreecommitdiffstats
path: root/qtip/cli/commands/cmd_plan.py
diff options
context:
space:
mode:
Diffstat (limited to 'qtip/cli/commands/cmd_plan.py')
-rw-r--r--qtip/cli/commands/cmd_plan.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/qtip/cli/commands/cmd_plan.py b/qtip/cli/commands/cmd_plan.py
index c1dd7cf6..64c702d3 100644
--- a/qtip/cli/commands/cmd_plan.py
+++ b/qtip/cli/commands/cmd_plan.py
@@ -35,6 +35,13 @@ def list(ctx):
pass
+@cli.command('show', help='View details of a Plan')
+@click.argument('name')
+@pass_context
+def show(ctx, name):
+ pass
+
+
@cli.command('run', help='Execute a Plan')
@click.argument('name')
@pass_context