This repository has been archived on 2021-12-24. You can view files and clone it, but cannot push or open issues/pull-requests.
jos/app/api/search.py

12 lines
250 B
Python
Raw Normal View History

2021-05-18 23:12:00 +02:00
"""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"