add db creation
This commit is contained in:
parent
b0be25aafb
commit
7f6a36439f
1 changed files with 2 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
|||
from flask import Flask, Response, jsonify, request
|
||||
from flask_cors import CORS
|
||||
from room import Room
|
||||
from song import init_db
|
||||
|
||||
app = Flask(__name__)
|
||||
CORS(app)
|
||||
|
@ -38,4 +39,5 @@ def join():
|
|||
|
||||
|
||||
if __name__ == "__main__":
|
||||
init_db()
|
||||
app.run(debug=True)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue