mirror of
https://github.com/yavook/kiwi-scp.git
synced 2024-11-22 21:03:00 +00:00
25 lines
551 B
Python
25 lines
551 B
Python
# parent
|
|
from ..parser import Parser
|
|
|
|
|
|
class SubCommand:
|
|
"""represents kiwi [anything] command"""
|
|
|
|
# actual command string
|
|
__name = None
|
|
# command parser
|
|
_sub_parser = None
|
|
|
|
def __init__(self, name, **kwargs):
|
|
self.__name = name
|
|
self._sub_parser = Parser().get_subparsers().add_parser(
|
|
name,
|
|
**kwargs
|
|
)
|
|
|
|
def __str__(self):
|
|
return self.__name
|
|
|
|
def run(self, config, args):
|
|
"""actually run command with this dir's config and parsed CLI args"""
|
|
pass
|