sirus / backend /excel_module /config.py
ranilmukesh's picture
Deploy SiRUS SQL Agent backend
0535980
"""
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
)