- 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
448 B
Python
26 lines
448 B
Python
"""Infrastructure configuration.
|
|
|
|
This module re-exports all configuration classes and the global
|
|
settings instance for application configuration.
|
|
"""
|
|
|
|
from app.infrastructure.config.settings import (
|
|
AppConfig,
|
|
DBConfig,
|
|
Environment,
|
|
KCConfig,
|
|
SecurityConfig,
|
|
Settings,
|
|
settings,
|
|
)
|
|
|
|
__all__ = [
|
|
"AppConfig",
|
|
"DBConfig",
|
|
"KCConfig",
|
|
"SecurityConfig",
|
|
"Environment",
|
|
"Settings",
|
|
"settings",
|
|
]
|