fastapitest / main.py
Mrunal09's picture
Update main.py
50d7136 verified
raw
history blame contribute delete
190 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/hello")
def hello():
"""
This test hello
"""
return {"hello": "you successfully deployed your test FastAPI Mrunal"}