This repository has been archived on 2021-12-24. You can view files and clone it, but cannot push or open issues/pull-requests.
2021-05-18 23:12:00 +02:00
|
|
|
"""Handles the search endpoint."""
|
|
|
|
from quart import Blueprint
|
|
|
|
|
|
|
|
|
2021-05-19 12:07:23 +02:00
|
|
|
search_bp = Blueprint("search", __name__)
|
2021-05-18 23:12:00 +02:00
|
|
|
|
|
|
|
|
2021-05-19 12:07:23 +02:00
|
|
|
@search_bp.route("/", methods=["GET"])
|
2021-05-18 23:12:00 +02:00
|
|
|
async def search_spotify():
|
|
|
|
"""Search the Spotify API."""
|
|
|
|
return "yeet"
|