15 lines
229 B
Python
15 lines
229 B
Python
|
|
#!/usr/bin/env python3
|
||
|
|
# -*- coding: utf-8 -*-
|
||
|
|
|
||
|
|
"""
|
||
|
|
数据库基础设施
|
||
|
|
"""
|
||
|
|
|
||
|
|
from .connection import DatabaseConnection
|
||
|
|
from .base_repository import BaseRepository
|
||
|
|
|
||
|
|
__all__ = [
|
||
|
|
'DatabaseConnection',
|
||
|
|
'BaseRepository',
|
||
|
|
]
|