clan-app: rename clan-vm-manager
This commit is contained in:
15
pkgs/clan-app/tests/helpers/cli.py
Normal file
15
pkgs/clan-app/tests/helpers/cli.py
Normal file
@@ -0,0 +1,15 @@
|
||||
import logging
|
||||
import shlex
|
||||
|
||||
from clan_cli.custom_logger import get_caller
|
||||
|
||||
from clan_app 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)
|
||||
Reference in New Issue
Block a user