Skip to content
Snippets Groups Projects
command.py 284 B
Newer Older
Seblu's avatar
Seblu committed
#!/usr/bin/env python
#coding=utf8

'''
CloudControl CLI command module
'''

class Command(object):

    def __init__(self, cli):
        self.cli = cli
        self.printer = self.cli.printer

    def usage(self):
        return None

    def help(self):
        return self.__doc__