kiwi-scp/src/kiwi/subcommands/show.py

22 lines
443 B
Python
Raw Normal View History

2020-08-06 12:55:27 +00:00
from kiwi.config import Config
from kiwi.core import Parser
from .subcommand import SubCommand
class ShowCommand(SubCommand):
__parser = None
@classmethod
def get_cmd(cls):
return 'show'
@classmethod
def setup(cls):
cls.__parser = Parser.get_subparsers().add_parser(cls.get_cmd(), help="Show effective kiwi.yml")
@classmethod
def run(cls):
config = Config.load()
print(config)