feat: recording upload and management API with tests

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-03 22:10:42 +05:00
parent bfb1fc9312
commit 2a9cf9e224
6 changed files with 266 additions and 0 deletions
+2
View File
@@ -3,6 +3,7 @@ from contextlib import asynccontextmanager
from fastapi import FastAPI
from app.api.auth import router as auth_router
from app.api.recordings import router as recordings_router
@asynccontextmanager
@@ -12,6 +13,7 @@ async def lifespan(app: FastAPI):
app = FastAPI(title="Meeting Protocol Service", lifespan=lifespan)
app.include_router(auth_router)
app.include_router(recordings_router)
@app.get("/api/health")