from quart import Blueprint dashboard = Blueprint("dashboard", __name__) @dashboard.route("/") async def home(): return "Dashboard page"