dockge-cli/dockge_cli/dockge_cli.py
Firq d3e5d4ae56
All checks were successful
/ backend-pylint (push) Successful in 13s
/ build-artifacts (push) Successful in 8s
/ publish-artifacts (push) Successful in 20s
Improved typing, refactored code, fixed some issues
2024-07-04 22:12:36 +02:00

7 lines
151 B
Python

from .client.parser import parse_arguments
from .client.run import run
def cli():
command, args= parse_arguments()
run(command.command, args)