Merge branch 'pr-healthcheck'

This commit was merged in pull request #9.
This commit is contained in:
2026-03-10 08:04:40 -04:00
+4
View File
@@ -16,6 +16,10 @@ def allowed_file(filename):
return '.' in filename and \
filename.rsplit('.', 1)[1].lower() in ALLOWED_EXTENSIONS
@app.route('/ping')
def ping():
return 'pong', 200
@app.route('/', methods=['GET', 'POST'])
def upload_file():
if request.method == 'POST':