summaryrefslogtreecommitdiff
path: root/pecan/deploy.py
blob: be6b35922ece050bab5df4a7bc9a2090b2fa3b00 (plain)
1
2
3
4
5
6
7
8
9
from .core import load_app


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