swingmusic/wsgi.py
geoffrey45 7b9f5fdb13 fix: disable flask debug
remove and revoke last fm api key
2023-02-01 21:03:30 +03:00

6 lines
122 B
Python

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