File size: 110 Bytes
24a440f
 
 
 
 
1
2
3
4
5
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
async def root():
 return {"greeting":"Hello world"}