initial commit

This commit is contained in:
2025-06-29 18:17:04 +03:00
commit 6c731b04d3
11 changed files with 323 additions and 0 deletions

7
app/routes/app.py Normal file
View File

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