feat:初版
This commit is contained in:
15
database/__init__.py
Normal file
15
database/__init__.py
Normal file
@@ -0,0 +1,15 @@
|
||||
"""
|
||||
Database - 数据库模块
|
||||
|
||||
包含 SQLite 数据库的封装
|
||||
"""
|
||||
|
||||
# from .XYBotDB import XYBotDB # 需要 SQLAlchemy,暂时禁用
|
||||
from .keyvalDB import KeyvalDB
|
||||
from .messsagDB import MessageDB
|
||||
|
||||
__all__ = [
|
||||
# 'XYBotDB',
|
||||
'KeyvalDB',
|
||||
'MessageDB',
|
||||
]
|
||||
Reference in New Issue
Block a user