removed home

This commit is contained in:
2026-05-06 23:11:00 -06:00
parent 2212d7b265
commit 850b373d42
9 changed files with 97 additions and 252 deletions

View File

@ -9,6 +9,8 @@ from fastapi.middleware.cors import CORSMiddleware
from fastapi.responses import StreamingResponse
from pathlib import Path
from routers import audio
app = FastAPI(title="TalkEdit Dev Backend", version="0.0.1")
app.add_middleware(
@ -34,6 +36,8 @@ MIME_MAP = {
}
app.include_router(audio.router)
@app.get("/health")
async def health():
return {"status": "ok"}