feat: implemented ui and api interactions for drivers and vehicles redesigned settings ui

This commit is contained in:
2025-01-06 19:14:39 +01:00
parent 39f4b13ee1
commit 8ba723e52e
4 changed files with 196 additions and 11 deletions

1
app.py
View File

@@ -94,6 +94,7 @@ def handleDriverRoute():
# handle creating vehicle
try:
__driverHandler.createVehicle(request.args["name"])
# TODO: return id, 200
except Exception as e:
return "error" + " " + str(e), 500