clan-vm-manager: add nix package

This commit is contained in:
Jörg Thalheim
2023-11-23 14:37:05 +01:00
parent 3f7bb87021
commit 47471c666b
12 changed files with 136 additions and 17 deletions

View File

@@ -0,0 +1,12 @@
#!/usr/bin/env python3
import os
import sys
sys.path.insert(
0, os.path.join(os.path.dirname(os.path.dirname(os.path.realpath(__file__))))
)
from clan_vm_manager import main # NOQA
if __name__ == "__main__":
main()