map-wikireader / main.py
DebasishDhal99's picture
First setup commit
bfbdc91
raw
history blame
115 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def health_check():
return {"status": "ok"}