9 lines
172 B
Python
9 lines
172 B
Python
"""Expose a development application."""
|
|
|
|
from xppl.app import create_app
|
|
from xppl.socketio import socketio
|
|
|
|
app = create_app('xppl.config.Development')
|
|
|
|
socketio.run(app)
|