- 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
30 lines
727 B
Python
30 lines
727 B
Python
"""Application layer exports.
|
|
|
|
This module re-exports all application layer components including
|
|
DTOs, interfaces, and use cases for convenient importing.
|
|
"""
|
|
|
|
from app.application.dtos import CreatePostDTO, PostResponseDTO, UpdatePostDTO
|
|
from app.application.interfaces import TransactionManager
|
|
from app.application.use_cases import (
|
|
CreatePostUseCase,
|
|
DeletePostUseCase,
|
|
GetPostUseCase,
|
|
ListPostsUseCase,
|
|
PublishPostUseCase,
|
|
UpdatePostUseCase,
|
|
)
|
|
|
|
__all__ = [
|
|
"CreatePostDTO",
|
|
"UpdatePostDTO",
|
|
"PostResponseDTO",
|
|
"TransactionManager",
|
|
"CreatePostUseCase",
|
|
"GetPostUseCase",
|
|
"UpdatePostUseCase",
|
|
"DeletePostUseCase",
|
|
"ListPostsUseCase",
|
|
"PublishPostUseCase",
|
|
]
|