Update main.py

This commit is contained in:
TylerCG 2025-04-22 22:24:37 -04:00
parent 3d78bbb988
commit b58ccf9629

View File

@ -31,7 +31,7 @@ async def dropoutSeries():
return JSONResponse(content={"error": "File not found"}, status_code=404)
@app.get("/dropoutDownload")
async def dropoutDownload(show: str, season: str, episode: str):
async def dropoutDownload(show: str, season: str, episode: str = None):
download.dropout.show(show,season,episode)
@app.get("/ydl")