refactor: route startup and cli settings through runtime

This commit is contained in:
jxxghp
2026-08-23 03:22:46 +08:00
parent c89066d96f
commit a42d0dc112
8 changed files with 27 additions and 16 deletions
+4 -1
View File
@@ -55,7 +55,10 @@ elif SystemUtils.is_frozen():
sys.stderr = open(os.devnull, 'w')
from app.factory import app
from app.runtime.config import global_vars, settings
from app.runtime.config import global_vars
from app.runtime.settings import RuntimeSettingsCompat
settings = RuntimeSettingsCompat()
from app.runtime.topology import (
UnsupportedProcessTopologyError,
validate_process_topology,