- 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
11 lines
286 B
Python
11 lines
286 B
Python
"""Repository interfaces.
|
|
|
|
This module re-exports all repository interfaces that define
|
|
the contract for data access operations.
|
|
"""
|
|
|
|
from app.domain.repositories.base import Repository
|
|
from app.domain.repositories.post import PostRepository
|
|
|
|
__all__ = ["Repository", "PostRepository"]
|