from fastapi import FastAPI import json app = FastAPI() @app.get("/") def statusCheck(): return {"status": "running"}