first commit
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
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
|
||||
Reference in New Issue
Block a user