We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6af913 commit c10fd58Copy full SHA for c10fd58
packet/routes/api.py
@@ -208,6 +208,12 @@ def upperclassman_stats(uid):
208
return stats.upperclassman_stats(uid)
209
210
211
+@app.route('/readiness')
212
+def readiness() -> tuple[str, int]:
213
+ '''A basic healthcheck. Returns 200 to indicate flask is running'''
214
+ return "ready", 200
215
+
216
217
def commit_sig(packet, was_100, uid):
218
packet_signed_notification(packet, uid)
219
db.session.commit()
0 commit comments