Files
MemoryBear/api/app/cache/__init__.py
2026-03-05 16:21:27 +08:00

11 lines
150 B
Python

"""
Cache 缓存模块
提供各种缓存功能的统一入口
"""
from .memory import InterestMemoryCache
__all__ = [
"InterestMemoryCache",
]