Files
AstrBot/astrbot/core/desktop_runtime.py
2026-07-02 11:21:02 +09:00

11 lines
285 B
Python

import os
DESKTOP_MANAGED_RESTART_MESSAGE = (
"AstrBot Desktop manages this backend process. Please restart or update from "
"the desktop app instead of the core WebUI."
)
def is_desktop_managed_backend() -> bool:
return os.environ.get("ASTRBOT_DESKTOP_MANAGED") == "1"