Details |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 172 |
ashish |
1 |
# -*- coding: utf-8 -*-
|
|
|
2 |
"""WSGI environment setup for Wiki-20."""
|
|
|
3 |
|
|
|
4 |
from wiki20.config.app_cfg import base_config
|
|
|
5 |
|
|
|
6 |
__all__ = ['load_environment']
|
|
|
7 |
|
|
|
8 |
#Use base_config to setup the environment loader function
|
|
|
9 |
load_environment = base_config.make_load_environment()
|