mirror of
https://github.com/tcsenpai/swingmusic.git
synced 2025-06-12 14:07:24 +00:00
6 lines
117 B
Python
6 lines
117 B
Python
from app import create_app
|
|
|
|
if __name__ == '__main__':
|
|
app = create_app()
|
|
app.run(debug=True, threaded=True)
|