removed execute to test if page works

This commit is contained in:
ishak jmilou.ishak
2024-12-11 14:39:47 +01:00
parent 93167e67f6
commit b2432ab9cd

View File

@@ -62,7 +62,8 @@ def phpmyadmin_passthrough(path):
@app.route("/database")
def database():
cur = mysql.connection.cursor()
cur.execute("SELECT * FROM kobuki_data")
# cur.execute("SELECT * FROM kobuki_data")
return "hi",404
if __name__ == '__main__':
app.run(debug=True, port=5000)