Spaces:
Sleeping
Sleeping
File size: 192 Bytes
1518a95 | 1 2 3 4 5 | # src/infra/client_context.py
from contextvars import ContextVar
# 建立一個 Async 任務隔離的變數,預設為 None
client_session_ctx = ContextVar("client_session_id", default=None) |