clan-core/pkgs/clan-vm-manager/clan_vm_manager/__init__.py
Qubasa 0ee8dceee2
Some checks failed
checks / checks (pull_request) Failing after 1m10s
checks / check-links (pull_request) Successful in 21s
checks / checks-impure (pull_request) Successful in 1m46s
clan-vm-manager: Basic pytest framework established
2024-03-22 19:08:35 +01:00

15 lines
258 B
Python

import logging
import sys
from clan_cli.profiler import profile
from clan_vm_manager.app import MainApplication
log = logging.getLogger(__name__)
@profile
def main(argv: list[str] = sys.argv) -> int:
app = MainApplication()
return app.run(argv)