swingmusic/wsgi.py
Mungai Njoroge 198957bcae
Move server code to this repo (#95)
move server code to this repo
2023-01-13 20:01:52 +03:00

6 lines
117 B
Python

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