kanhacoderx commited on
Commit
2f91258
·
verified ·
1 Parent(s): e4e47ae

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py CHANGED
@@ -21,6 +21,11 @@ CORS(app, resources={r"/api/*": {"origins": "*"}})
21
  sessions: dict = {}
22
 
23
 
 
 
 
 
 
24
  @app.route("/api/upload", methods=["POST"])
25
  def upload_pdf():
26
 
 
21
  sessions: dict = {}
22
 
23
 
24
+ @app.route("/")
25
+ def home():
26
+ return {"message": "DocuMind AI Backend Running"}
27
+
28
+
29
  @app.route("/api/upload", methods=["POST"])
30
  def upload_pdf():
31