| """Config package — re-exports settings + path constants.""" | |
| from config.settings import ( | |
| Settings, | |
| settings, | |
| make_settings, | |
| BASE_DIR, | |
| DATA_DIR, | |
| MODELS_DIR, | |
| GALLERY_DIR, | |
| UPLOADS_DIR, | |
| JOBS_DIR, | |
| UI_DIR, | |
| ) | |
| __all__ = [ | |
| "Settings", | |
| "settings", | |
| "make_settings", | |
| "BASE_DIR", | |
| "DATA_DIR", | |
| "MODELS_DIR", | |
| "GALLERY_DIR", | |
| "UPLOADS_DIR", | |
| "JOBS_DIR", | |
| "UI_DIR", | |
| ] | |