Skip to content

Commit

Permalink
Implementing an echo to check availability
Browse files Browse the repository at this point in the history
  • Loading branch information
KanBen86 committed Jun 29, 2024
1 parent fd45d2c commit 19b013e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions app/backend/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,11 @@ def api_call():
except Exception as e:
return jsonify({"error": str(e)}), 500


@app.route('/_/_/echo')
def echo():
return jsonify(success=True)


if __name__ == '__main__':
app.run(debug=True, host='0.0.0.0')

0 comments on commit 19b013e

Please sign in to comment.