Kastg commited on
Commit
a3b9744
·
verified ·
1 Parent(s): 46d342a

Upload routes.py

Browse files
Files changed (1) hide show
  1. ai/routes.py +6 -0
ai/routes.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ from . import app
2
+ from flask import render_template
3
+
4
+ @app.route("/")
5
+ def index():
6
+ return render_template('index.html')