This repository has been archived on 2026-03-15. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
cau-praktikum/app/routes/main.py
T

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")