Spaces:
Sleeping
Sleeping
File size: 190 Bytes
50d7136 |
1 2 3 4 5 6 7 8 9 10 11 12 |
from fastapi import FastAPI
app = FastAPI()
@app.get("/hello")
def hello():
"""
This test hello
"""
return {"hello": "you successfully deployed your test FastAPI Mrunal"} |