Files

9 lines
247 B
Python
Raw Permalink Normal View History

# Unsichtbarer Windows-Launcher (pythonw ohne Konsolenfenster).
# Wird von HMS-Start.vbs aufgerufen.
import sys
from pathlib import Path
sys.path.insert(0, str(Path(__file__).resolve().parent))
from launcher_core import launch
sys.exit(launch())