This commit is contained in:
2024-03-29 12:47:55 +01:00
parent b5a6e1e6e5
commit 247f4cac9d
+5 -3
View File
@@ -51,9 +51,11 @@ def update_music_list():
record = json.loads(request.data)
print(record)
music_file_list.append(record["item"])
return 200
return jsonify(isError= False,
message= "Success",
statusCode= 200,
data= record), 200
if __name__=='__main__':
app.run(debug=True, host="0.0.0.0")