8 lines
159 B
Python
8 lines
159 B
Python
from flask import Blueprint, render_template
|
|
|
|
main_bp = Blueprint("main", __name__)
|
|
|
|
@main_bp.route("/")
|
|
def index():
|
|
return render_template("index.html")
|