Files
deb-python-pecan/pecan/deploy.py

10 lines
181 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)