Files
deb-python-pecan/pecan/deploy.py
2013-04-30 10:51:16 -04:00

10 lines
182 B
Python

from .core import load_app
def deploy(config):
"""
Given a config (dictionary of relative filename), returns a configured
WSGI app.
"""
return load_app(config)