Files
2026-05-22 13:06:42 +08:00

13 lines
254 B
Python

from typing import Any
_today_cache: dict[str, Any] | None = None
def get_today_cache() -> dict[str, Any] | None:
return _today_cache
def set_today_cache(data: dict[str, Any]) -> None:
global _today_cache
_today_cache = data