DSatishchandra commited on
Commit
b36fced
·
verified ·
1 Parent(s): 09fc0b8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -140,6 +140,10 @@ def submit():
140
  except Exception as e:
141
  return jsonify({'error': str(e)}), 500
142
 
 
 
 
 
143
 
144
  @app.route("/menu", methods=["GET"])
145
  def menu_page():
 
140
  except Exception as e:
141
  return jsonify({'error': str(e)}), 500
142
 
143
+ @app.route("/")
144
+ def index():
145
+ return render_template("index.html")
146
+
147
 
148
  @app.route("/menu", methods=["GET"])
149
  def menu_page():