clan-app: rename clan-vm-manager

This commit is contained in:
Johannes Kirschbauer
2024-06-05 11:23:12 +02:00
parent c751bc78d8
commit 0fb207bb59
61 changed files with 122 additions and 127 deletions

View File

@@ -1,15 +0,0 @@
import logging
import shlex
from clan_cli.custom_logger import get_caller
from clan_vm_manager import main
log = logging.getLogger(__name__)
class Cli:
def run(self, args: list[str]) -> None:
cmd = shlex.join(["clan", *args])
log.debug(f"$ {cmd} \nCaller: {get_caller()}")
main(args)