Grow / app.py
Ravi1212's picture
Create app.py
280afa5 verified
raw
history blame contribute delete
122 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def home():
return {"status": "TruthLens backend running"}