7 lines
181 B
Python
7 lines
181 B
Python
from flask import Blueprint, render_template
|
|
|
|
main_bp = Blueprint("main", __name__)
|
|
|
|
@main_bp.route("/", methods=["GET", "POST"])
|
|
def main():
|
|
return render_template("main.html") |