1
0
Fork 0
mirror of https://github.com/yavook/kiwi-scp.git synced 2024-11-22 12:53:00 +00:00
kiwi-scp/src/kiwi/__init__.py

19 lines
214 B
Python
Raw Normal View History

2020-08-12 15:46:50 +00:00
# local
2020-08-11 12:03:00 +00:00
from .parser import Parser
from .runner import Runner
2020-08-06 11:43:45 +00:00
2020-08-11 12:03:00 +00:00
def verbosity():
_ = Runner()
return Parser().get_args().verbosity
def run():
Runner().run()
__all__ = [
2020-08-11 12:03:00 +00:00
'verbosity',
'run'
]