from __future__ import annotations from quart import Blueprint def register(): bp = Blueprint("admin", __name__, url_prefix='/admin') return bp