yt_dataset / app /main.py
ariansyahdedy's picture
Download YT video
b0b30af
raw
history blame contribute delete
319 Bytes
# app/main.py
from fastapi import FastAPI
from app.api.endpoints import video
app = FastAPI()
# Register the video router
app.include_router(video.router, prefix="/video", tags=["Video download and Processing"])
@app.get("/")
async def root():
return {"message": "Welcome to the YouTube Video Processing API!"}