The rest of the commits to this repo, so we can now start sharing

This commit is contained in:
2026-03-12 00:15:13 +01:00
parent fa367208f3
commit 20b339ef40
7 changed files with 82 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():
return render_template("index.html")