6 lines
116 B
Python
6 lines
116 B
Python
|
"""Expose a production application."""
|
||
|
|
||
|
from xppl.app import create_app
|
||
|
|
||
|
app = create_app('xppl.config.Production')
|