first commit

This commit is contained in:
dekun
2026-05-22 13:06:42 +08:00
commit af5c249cf8
27 changed files with 1741 additions and 0 deletions
+12
View File
@@ -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