Files
WechatHookBot/database/__init__.py
2025-12-03 15:48:44 +08:00

16 lines
266 B
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
"""
Database - 数据库模块
包含 SQLite 数据库的封装
"""
# from .XYBotDB import XYBotDB # 需要 SQLAlchemy暂时禁用
from .keyvalDB import KeyvalDB
from .messsagDB import MessageDB
__all__ = [
# 'XYBotDB',
'KeyvalDB',
'MessageDB',
]