kiwi-scp/src/kiwi/subcommands/show.py
2020-08-17 10:09:00 +02:00

15 lines
284 B
Python

# local
from ._subcommand import SubCommand
class ShowCommand(SubCommand):
"""kiwi show"""
def __init__(self):
super().__init__(
'show',
description="Show effective kiwi.yml"
)
def run(self, config, args):
print(config)