test / app.py
spaceeeee111's picture
Added FastAPI app
8b1ff16
raw
history blame contribute delete
107 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World"}