feat:初版

This commit is contained in:
2025-12-03 15:48:44 +08:00
commit b4df26f61d
199 changed files with 23434 additions and 0 deletions

15
database/__init__.py Normal file
View File

@@ -0,0 +1,15 @@
"""
Database - 数据库模块
包含 SQLite 数据库的封装
"""
# from .XYBotDB import XYBotDB # 需要 SQLAlchemy暂时禁用
from .keyvalDB import KeyvalDB
from .messsagDB import MessageDB
__all__ = [
# 'XYBotDB',
'KeyvalDB',
'MessageDB',
]