brie-aurore/Brie/brie/config/environment.py

10 lines
254 B
Python
Raw Normal View History

# -*- coding: utf-8 -*-
"""WSGI environment setup for Brie."""
from brie.config.app_cfg import base_config
__all__ = ['load_environment']
#Use base_config to setup the environment loader function
load_environment = base_config.make_load_environment()