Files
tutor-tool/app/wsgi.py

6 lines
87 B
Python

import eventlet
eventlet.monkey_patch()
from app import create_app
app = create_app()