13 lines
254 B
Python
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
|