Site / app.py
GalaxyTab's picture
added app.py
6fe667b
raw
history blame
120 Bytes
from fastapi import FastAPI
import json
app = FastAPI()
@app.get("/")
def statusCheck():
return {"status": "running"}