Phase 6: main blueprint

This commit is contained in:
Patsy 2026-07-20 20:24:22 +02:00
parent 6de8484acd
commit e04ce89f61

View file

@ -0,0 +1,7 @@
from flask import Blueprint, render_template
main_bp = Blueprint("main", __name__)
@main_bp.route("/")
def index():
return render_template("index.html")