File size: 188 Bytes
f7e9181
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
from fastapi import FastAPI
from app.routes import ingest_router

app = FastAPI()

app.include_router(ingest_router)

@app.get("/")
def health_check():
    return {"status": "ok"}