1
0
Fork 0
mirror of https://github.com/yavook/kiwi-scp.git synced 2024-11-23 05:13:01 +00:00
kiwi-scp/src/kiwi/subcommands/show.py

17 lines
332 B
Python
Raw Normal View History

from ..config import LoadedConfig
from ..core import Parser
2020-08-06 12:55:27 +00:00
from ._utils import SubCommand
2020-08-06 12:55:27 +00:00
class ShowCommand(SubCommand):
def __init__(self):
super().__init__(
'logs',
description="Show logs of a project"
2020-08-10 09:24:39 +00:00
)
2020-08-06 12:55:27 +00:00
def run(self):
config = LoadedConfig.get()
2020-08-06 12:55:27 +00:00
print(config)