File size: 108 Bytes
6d2d383
 
 
 
 
 
 
1
2
3
4
5
6
7
from fastapi import FastAPI

app= FastAPI()

@app.get("/hello")
def hello():
    return {"Hi :" "Try again"}