Eerste commit voor rename-mvp
This commit is contained in:
+11
@@ -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"}
|
||||
Reference in New Issue
Block a user