mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 12:33:03 +00:00
7 lines
145 B
Python
7 lines
145 B
Python
from app import create_app
|
|
|
|
|
|
if __name__ == '__main__':
|
|
app = create_app()
|
|
app.run(debug=True, threaded=True, host="0.0.0.0", port=9876)
|