Skip to content

Commit b57f001

Browse files
committed
Fix backend route to /api/ping
1 parent 9a66480 commit b57f001

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

backend/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
app = Flask(__name__)
44

5-
@app.route("/ping")
5+
@app.route("/api/ping")
66
def ping():
77
return jsonify({"message": "Backend API is alive!"})
88

0 commit comments

Comments
 (0)