AmazonML / app.py
samiee2213's picture
added
780a2e6
Raw
History Blame Contribute Delete
125 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def home():
return {"message": "Hello from AmazonML Space!"}