Eerste commit voor rename-mvp

This commit is contained in:
kodi
2026-03-07 09:59:27 +01:00
commit 27cee7395f
12 changed files with 510 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
from fastapi import FastAPI
from app.api.tvdb import router as tvdb_router
app = FastAPI(title="Rename MVP")
app.include_router(tvdb_router, prefix="/api/tvdb", tags=["tvdb"])
@app.get("/api/health")
def health():
return {"status": "ok"}