upgrad / app.py
prithvirajpawar's picture
Create app.py
288d07c verified
raw
history blame contribute delete
No virus
109 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}