Coverage for services/training/src/config.py: 0%

2 statements  

« prev     ^ index     » next       coverage.py v7.11.0, created at 2025-10-25 16:18 +0000

1""" 

2DEPRECATED: This module has been moved to src/config/settings.py 

3 

4For backward compatibility, we re-export from the new location. 

5Please update imports to: from src.config import settings 

6""" 

7 

8# Re-export from new location for backward compatibility 

9from .config.settings import Settings, settings 

10 

11__all__ = ["Settings", "settings"]