kiwi-scp/src/kiwi/subcommands/show.py
2020-08-06 14:55:27 +02:00

21 lines
443 B
Python

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)