9 lines
166 B
Python
9 lines
166 B
Python
from flask import Blueprint, render_template
|
|
|
|
frontend = Blueprint("frontend", __name__)
|
|
|
|
|
|
@frontend.route("/")
|
|
def index():
|
|
return render_template("index.html")
|