diff --git a/__pycache__/run.cpython-310.pyc b/__pycache__/run.cpython-310.pyc index dc0bed3..e1c0efa 100644 Binary files a/__pycache__/run.cpython-310.pyc and b/__pycache__/run.cpython-310.pyc differ diff --git a/__pycache__/wsgi.cpython-310.pyc b/__pycache__/wsgi.cpython-310.pyc new file mode 100644 index 0000000..59ccf11 Binary files /dev/null and b/__pycache__/wsgi.cpython-310.pyc differ diff --git a/wsgi.py b/wsgi.py new file mode 100644 index 0000000..e165761 --- /dev/null +++ b/wsgi.py @@ -0,0 +1,6 @@ +import eventlet +eventlet.monkey_patch() + +from app.main import createApp + +app, socketio = createApp()