Telegram-Custom-Artwork-Api/main.py
2022-09-25 22:45:27 +08:00

14 lines
261 B
Python

from fastapi import FastAPI, Query
from utils import get_music
app = FastAPI()
@app.get('/search')
async def search(
*,
service: str = "apple",
keyword: str = Query(..., title="The name of a song")
):
return await get_music(service, keyword)