Merge "Create CLI template for Functest"
[functest.git] / cli / commands / cli_env.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 CliEnv:
14     def __init__(self):
15         pass
16
17     def show(self):
18         click.echo("env show")
19
20     def status(self):
21         click.echo("env status")
22
23     def getrc(self):
24         click.echo("env getrc")
25
26     def sourcerc(self):
27         click.echo("env sourcerc")
28
29     def setdefaults(self):
30         click.echo("env setdefaults")
31
32     def getdefaults(self):
33         click.echo("env getdefaults")
34
35     def clean(self):
36         click.echo("env clean")