8 lines
151 B
Python
8 lines
151 B
Python
"""
|
|
数据库模块
|
|
"""
|
|
from .mysql_manager import MySQLManager
|
|
from .sqlite_manager import SQLiteManager
|
|
|
|
__all__ = ['MySQLManager', 'SQLiteManager']
|