mirror of
https://github.com/yavook/kiwi-scp.git
synced 2024-11-22 21:03:00 +00:00
16 lines
312 B
Python
16 lines
312 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, runner, config, args):
|
|
print(config)
|
|
return True
|