Files
fridge-tracker/app/routes.py
2026-04-01 14:30:07 +01:00

9 lines
157 B
Python

from flask import Blueprint, render_template
bp = Blueprint("main", __name__)
@bp.route("/")
def index() -> str:
return render_template("index.html")