yinkaiot / app.py
okeowo1014's picture
first upload
c0f494d
raw
history blame contribute delete
No virus
109 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}