mirror of
https://github.com/migatu/conjurer.git
synced 2026-07-17 07:12:09 +00:00
Fix 15
This commit is contained in:
@@ -51,10 +51,12 @@ def update_music_list():
|
|||||||
record = json.loads(request.data)
|
record = json.loads(request.data)
|
||||||
print(record)
|
print(record)
|
||||||
music_file_list.append(record["item"])
|
music_file_list.append(record["item"])
|
||||||
return jsonify(isError= False,
|
return_data = jsonify(isError= False,
|
||||||
message= "Success",
|
message= "Success",
|
||||||
statusCode= 200,
|
statusCode= 200,
|
||||||
data= record), 200
|
data= record), 200
|
||||||
|
print(return_data)
|
||||||
|
return return_data
|
||||||
|
|
||||||
if __name__=='__main__':
|
if __name__=='__main__':
|
||||||
app.run(debug=True, host="0.0.0.0")
|
app.run(debug=True, host="0.0.0.0")
|
||||||
|
|||||||
Reference in New Issue
Block a user