"""Compatibility wrapper to load env-specific settings.

This package version mirrors `config/settings.py` so imports of
`config.settings` resolve consistently regardless of whether Python
picks the module file or the package.
"""

import os

env = os.environ.get("DJANGO_ENV", "development").lower()

if env == "production":
    from ..settings_prod import *  # noqa: F401,F403
else:
    from ..settings_dev import *  # noqa: F401,F403
