pyrom/app/routes/app.py
2025-06-29 18:17:04 +03:00

8 lines
174 B
Python

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