7 lines
137 B
Python
Executable file
7 lines
137 B
Python
Executable file
from flask import Flask, render_template
|
|
|
|
app = Flask(__name__)
|
|
|
|
@app.route("/")
|
|
def render_home():
|
|
return render_template("home.html")
|