7 lines
132 B
Python
7 lines
132 B
Python
import main
|
|
import flask
|
|
|
|
@main.app.route("/", methods = ['GET'])
|
|
def home():
|
|
return (flask.render_template("home/index.html"))
|