myrmidon / python /src /server /core /app_state.py
tek Atrust
chore(deploy): build monolithic server for Hugging Face
d5ef46f
Raw
History Blame Contribute Delete
187 Bytes
# python/src/server/core/app_state.py
class AppState:
"""Global application state shared across core modules."""
initialization_complete: bool = False
app_state = AppState()