Files
more_dots/services/storage/__init__.py
T

15 lines
341 B
Python
Raw Normal View History

2026-03-24 18:07:22 +08:00
"""数据存储模块"""
from .message_storage import get_message_storage, MessageStorage
from .structured_logger import get_structured_logger
from .cache import CacheBase, NoopCache, RedisCache
__all__ = [
"get_message_storage",
"MessageStorage",
"get_structured_logger",
"CacheBase",
"NoopCache",
"RedisCache",
]