Spaces:
Sleeping
Sleeping
File size: 414 Bytes
558db1e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | """
Configuration Facade
This module re-exports components from the modularized configuration system
to maintain backward compatibility with the rest of the codebase.
Refactored into:
- constants.py
- logger.py
- config_schema.py
- config_io.py
"""
import os
from constants import *
from logger import *
from config_schema import *
from config_io import *
MASTER_KEY = os.getenv("MASTER_KEY", "QUANT-ALPHA-99") |