- 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
279 B
Python
10 lines
279 B
Python
"""Application DTOs.
|
|
|
|
This module re-exports all Data Transfer Objects used in the
|
|
application layer for data communication.
|
|
"""
|
|
|
|
from app.application.dtos.post import CreatePostDTO, PostResponseDTO, UpdatePostDTO
|
|
|
|
__all__ = ["CreatePostDTO", "UpdatePostDTO", "PostResponseDTO"]
|