swingmusic/server/wsgi.py
2021-12-15 15:20:12 +03:00

6 lines
117 B
Python

from app import create_app
if __name__ == '__main__':
app = create_app()
app.run(debug=True, threaded=True)