Merge "Create CLI template for Functest"
[functest.git] / cli / commands / cli_tier.py
1 #!/usr/bin/env python
2 #
3 # jose.lausuch@ericsson.com
4 # All rights reserved. This program and the accompanying materials
5 # are made available under the terms of the Apache License, Version 2.0
6 # which accompanies this distribution, and is available at
7 # http://www.apache.org/licenses/LICENSE-2.0
8 #
9
10 import click
11
12
13 class CliTier:
14     def __init__(self):
15         pass
16
17     def list(self):
18         click.echo("tier list")
19
20     def show(self, tiername):
21         click.echo("tier show %s" % tiername)
22
23     def run(self, tiername):
24         click.echo("tier run %s" % tiername)