Skip to content

Commit

Permalink
Merge pull request #33 from grant-baer/wiring_up_db_to_backend
Browse files Browse the repository at this point in the history
test comment merged to update ci check
  • Loading branch information
gp-sb authored Nov 13, 2023
2 parents ffbf97d + f589084 commit 0dcb06c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Backend/backend.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#test comment to refresh ci
from flask import Flask, request, jsonify
import requests
from flask_cors import CORS, cross_origin
Expand Down Expand Up @@ -56,7 +57,7 @@ def store_image():
return jsonify({"error": str(e)}), 500
data = request.get_json()
text = data["text"]

print(text)
return jsonify({"message": "Text logged successfully!"})

Expand Down

0 comments on commit 0dcb06c

Please sign in to comment.