8 lines
153 B
Python
8 lines
153 B
Python
"""
|
|
数据库模块
|
|
提供统一的 Repository 和实体类
|
|
"""
|
|
from .base import BaseRepository, BaseEntity
|
|
|
|
__all__ = ['BaseRepository', 'BaseEntity']
|