Добавил новые ЭП для новой версии загрузки видео с YouTube

This commit is contained in:
Viner Abubakirov
2026-02-25 12:11:06 +05:00
parent 8ffa8cdf71
commit dc5f07fd78
8 changed files with 99 additions and 16 deletions

8
app/api/v2/router.py Normal file
View File

@@ -0,0 +1,8 @@
from fastapi import APIRouter
from app.api.v2.endpoints import youtube
router = APIRouter()
router.include_router(youtube.router, prefix="/youtube", tags=["YouTube"])