mirror of
https://github.com/yavook/kiwi-scp.git
synced 2024-11-23 05:13:01 +00:00
12 lines
255 B
Python
12 lines
255 B
Python
from ._subcommand import SubCommand
|
|
|
|
|
|
class ShowCommand(SubCommand):
|
|
def __init__(self):
|
|
super().__init__(
|
|
'show',
|
|
description="Show effective kiwi.yml"
|
|
)
|
|
|
|
def run(self, config, args):
|
|
print(config)
|