Spaces:
Running
Running
| """ | |
| DEPRECATED: Configuration moved to core.minio.config | |
| This file provides backward compatibility for imports that still reference | |
| excel_module.config. All new code should import from core.minio.config instead. | |
| """ | |
| # Re-export everything from the new location for backward compatibility | |
| from core.minio.config import * | |
| import warnings | |
| warnings.warn( | |
| "excel_module.config is deprecated. Use 'from core.minio.config import ...' instead.", | |
| DeprecationWarning, | |
| stacklevel=2 | |
| ) |