summaryrefslogtreecommitdiffstats
path: root/qtip/cli/commands/cmd_plan.py
diff options
context:
space:
mode:
authorTaseer Ahmed <taseer94@gmail.com>2017-02-22 06:45:45 +0500
committerTaseer Ahmed <taseer94@gmail.com>2017-02-22 07:04:15 +0500
commita0a2c2388b9c05c2dff3425b581b33d1695d56eb (patch)
tree9d445b44feabb3838c18af18454576732f7756b6 /qtip/cli/commands/cmd_plan.py
parenta95ed75274a7f98e8988bfbf521c29c9da021fa2 (diff)
Addition of detail viewing command.
Change-Id: Ia9ad825f20b279db1852587540a2ad6cb3815e1d Signed-off-by:Taseer Ahmed <taseer94@gmail.com>
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