Vaibhav84's picture
Upload main.py
24a440f verified
raw
history blame
110 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
async def root():
return {"greeting":"Hello world"}