Telegram-Custom-Artwork-Api/main.py

13 lines
224 B
Python
Raw Normal View History

2022-09-25 14:08:06 +00:00
from fastapi import FastAPI, Query
from utils import get_music
app = FastAPI()
@app.get('/search')
async def search(
*,
keyword: str = Query(..., title="The name of a song")
):
return await get_music(keyword)