- 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
22 lines
443 B
Python
22 lines
443 B
Python
"""Presentation layer exports.
|
|
|
|
This module re-exports presentation layer components including
|
|
API router and Pydantic schemas.
|
|
"""
|
|
|
|
from app.presentation.api import router
|
|
from app.presentation.schemas import (
|
|
PostCreateSchema,
|
|
PostListResponseSchema,
|
|
PostResponseSchema,
|
|
PostUpdateSchema,
|
|
)
|
|
|
|
__all__ = [
|
|
"router",
|
|
"PostCreateSchema",
|
|
"PostUpdateSchema",
|
|
"PostResponseSchema",
|
|
"PostListResponseSchema",
|
|
]
|