mirror of
https://github.com/AstrBotDevs/AstrBot
synced 2026-07-15 17:30:13 +08:00
11 lines
285 B
Python
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"
|