10 lines
254 B
Python
10 lines
254 B
Python
# -*- 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()
|