This repository has been archived on 2021-12-24. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
jos/app/api/search.py
Jef Roosens ea8721659c
Some checks failed
continuous-integration/drone the build failed
First attempt at using blueprints
2021-05-18 23:12:00 +02:00

11 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"