- 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
20 lines
469 B
Python
20 lines
469 B
Python
"""Infrastructure middleware.
|
|
|
|
This module re-exports exception handling middleware for
|
|
centralized error management in the application.
|
|
"""
|
|
|
|
from app.infrastructure.middleware.error_handler import (
|
|
domain_exception_handler,
|
|
generic_exception_handler,
|
|
http_exception_handler,
|
|
register_exception_handlers,
|
|
)
|
|
|
|
__all__ = [
|
|
"domain_exception_handler",
|
|
"http_exception_handler",
|
|
"generic_exception_handler",
|
|
"register_exception_handlers",
|
|
]
|