This commit is contained in:
2021-03-24 16:35:12 +01:00
parent 9ba7a030a7
commit d14252f707
10 changed files with 325 additions and 185 deletions

View File

@@ -3,7 +3,7 @@ import argparse
import logging
import sys
from client.command import AbstractCommand
from client import command as cmd
def main():
@@ -18,7 +18,7 @@ def main():
logging.basicConfig(level=logging.ERROR - (10 * arguments.verbose))
logging.debug("Arguments: %s", arguments)
command = AbstractCommand.create(arguments.command, arguments.URI, arguments.port)
command = cmd.create(arguments.command, arguments.URI, arguments.port)
command.execute()