15 lines
271 B
Python
Raw Normal View History

2025-12-08 14:58:35 +08:00
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Infrastructure Layer - 基础设施层
包含数据库外部服务存储等技术实现
"""
from .database import DatabaseConnection, BaseRepository
__all__ = [
'DatabaseConnection',
'BaseRepository',
]