rename index route to database and update response message

This commit is contained in:
ishak jmilou.ishak
2024-12-05 13:40:34 +01:00
parent f9cb54a1cf
commit cd374dab81

View File

@@ -60,8 +60,8 @@ def phpmyadmin_passthrough(path):
# Laat Apache deze route direct afhandelen
return "", 404
@app.route("/index")
def index():
@app.route("/database")
def database():
return "Connected to database"
if __name__ == '__main__':