8 lines
174 B
Python
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>"
|