"""Handles the search endpoint.""" from quart import Blueprint search_bp = Blueprint("search", __name__) @search_bp.route("/", methods=["GET"]) async def search_spotify(): """Search the Spotify API.""" return "yeet"