File size: 120 Bytes
6fe667b
cd11223
 
 
 
 
 
1
2
3
4
5
6
7
8
from fastapi import FastAPI
import json

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