1
0
Fork 0
mirror of https://github.com/yavook/kiwi-scp.git synced 2025-03-19 19:03:00 +00:00
kiwi-scp/src/kiwi/subcommands/show.py
2020-08-10 16:35:38 +02:00

15 lines
307 B
Python

from ..config import LoadedConfig
from ._utils import SubCommand
class ShowCommand(SubCommand):
def __init__(self):
super().__init__(
'show',
description="show effective kiwi.yml"
)
def run(self):
config = LoadedConfig.get()
print(config)