clan-vm-manager: Restore to known good version

This commit is contained in:
Qubasa
2024-07-19 22:05:47 +02:00
parent b047babccb
commit 131299694b
63 changed files with 4263 additions and 4 deletions

View File

@@ -0,0 +1,15 @@
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)