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