- 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
26 lines
527 B
Python
26 lines
527 B
Python
"""Presentation schemas.
|
|
|
|
This module re-exports all Pydantic schemas used for
|
|
request/response validation in the API layer.
|
|
"""
|
|
|
|
from app.presentation.schemas.post import (
|
|
PostBaseSchema,
|
|
PostCreateSchema,
|
|
PostListResponseSchema,
|
|
PostPublishSchema,
|
|
PostResponseSchema,
|
|
PostSearchSchema,
|
|
PostUpdateSchema,
|
|
)
|
|
|
|
__all__ = [
|
|
"PostBaseSchema",
|
|
"PostCreateSchema",
|
|
"PostUpdateSchema",
|
|
"PostResponseSchema",
|
|
"PostListResponseSchema",
|
|
"PostSearchSchema",
|
|
"PostPublishSchema",
|
|
]
|