testFastapiyt / main.py
Hafeefa's picture
Add application file2
4a44229
raw
history blame contribute delete
145 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/hello")
def hello():
return {"hello": "you successfully deployed your FastAPI app"}