test_api / app.py
rvritesh167's picture
Update app.py
1e0f3fc verified
Raw
History Blame Contribute Delete
189 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}
@app.post("/")
def post_name(name:str):
return "this is your name: "+ name