10 lines
204 B
Python
10 lines
204 B
Python
from .client.parser import parse_arguments
|
|
from .client.run import run
|
|
|
|
def cli():
|
|
"""
|
|
main function for cli invocation
|
|
"""
|
|
command, args= parse_arguments()
|
|
run(command.command, args)
|