reaper93 / app.py
Shailendra Singh
Add application file
b2fa700
raw
history blame contribute delete
No virus
109 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}