__init__.py 175 B

123456789101112
  1. """ Base command definition.
  2. """
  3. class Command(object):
  4. help = ""
  5. def __init__(self):
  6. pass
  7. @classmethod
  8. def setup_parser(cls, parser):
  9. pass