* Consolidating a considerable amount of duplicate (for loading a Pecan app and its environment) into `pecan.core.load_app`. * Removing support for module-based configurations. * Wrote a simple utility for loading a test environment, `pecan.testing.load_test_app`.
5 lines
75 B
Python
5 lines
75 B
Python
from core import load_app
|
|
|
|
def deploy(config):
|
|
return load_app(config)
|