removed home
This commit is contained in:
@ -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"}
|
||||
|
||||
Reference in New Issue
Block a user