This commit is contained in:
2025-06-29 23:54:29 +03:00
parent fb2a96e94d
commit bd56310067
4 changed files with 81 additions and 11 deletions

View File

@ -1,7 +1,7 @@
from flask import Blueprint
from flask import Blueprint, redirect, url_for
bp = Blueprint("app", __name__, url_prefix = "/")
@bp.route("/")
def hello_world():
return f"<img src='static/avatars/default.webp'></img>"
def index():
return redirect(url_for("topics.all_topics"))