mirror of
https://github.com/Xtao-Labs/Telegram-Custom-Artwork-Api.git
synced 2024-12-04 20:11:40 +00:00
13 lines
224 B
Python
13 lines
224 B
Python
|
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)
|