5 lines
91 B
Python
5 lines
91 B
Python
|
|
"""数据访问层模块"""
|
||
|
|
from dataaccess.base_dao import BaseDAO
|
||
|
|
|
||
|
|
__all__ = ["BaseDAO"]
|