- Add AI code generation requirements to AGENTS.md - Add module-level docstrings to all 46 Python modules - Add detailed Google-style docstrings to all classes and functions - Remove all inline comments following self-documenting code principle - Include Args, Returns, Raises sections in function docstrings - Add Attributes and Examples sections to class docstrings
10 lines
248 B
Python
10 lines
248 B
Python
"""Repository implementations.
|
|
|
|
This module re-exports concrete repository implementations
|
|
for data access using SQLAlchemy ORM.
|
|
"""
|
|
|
|
from app.infrastructure.repositories.post import SQLAlchemyPostRepository
|
|
|
|
__all__ = ["SQLAlchemyPostRepository"]
|