9 lines
247 B
Python
9 lines
247 B
Python
|
|
# 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())
|