12 lines
250 B
Python
12 lines
250 B
Python
|
"""Handles the search endpoint."""
|
||
|
from quart import Blueprint
|
||
|
|
||
|
|
||
|
blueprint = Blueprint("search", __name__, url_prefix="/search")
|
||
|
|
||
|
|
||
|
@blueprint.route("/", methods=["GET"])
|
||
|
async def search_spotify():
|
||
|
"""Search the Spotify API."""
|
||
|
return "yeet"
|