Fast_api / app.py
mulasagg's picture
Add application file
c2659b2
raw
history blame
117 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/hello")
def hello():
return {"message": "Hello, World!"}