sp-mabt5 / app.py
aztro's picture
Create App.py
2ba47bb verified
raw
history blame contribute delete
164 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"mensaje": "¡Tu Docker Space con FastAPI está corriendo correctamente!"}