chore: Initial commit

This commit is contained in:
2026-04-01 14:30:07 +01:00
commit 91cdd6523f
9 changed files with 141 additions and 0 deletions

8
app/routes.py Normal file
View File

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