15 lines
271 B
Python
15 lines
271 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
Infrastructure Layer - 基础设施层
|
|
包含数据库、外部服务、存储等技术实现
|
|
"""
|
|
|
|
from .database import DatabaseConnection, BaseRepository
|
|
|
|
__all__ = [
|
|
'DatabaseConnection',
|
|
'BaseRepository',
|
|
]
|