feat: commit that succeeds - Hello BackendIM

This commit is contained in:
Obi.M 2025-03-04 17:49:37 +01:00
parent e17a90c7c3
commit fc56bab6dc
3 changed files with 3 additions and 1 deletions

Binary file not shown.

View File

@ -2,9 +2,11 @@ from fastapi import FastAPI
app = FastAPI()
@app.get("/")
async def read_root():
return {"message": "Hello World"}
return {"message": "Hello BackendIM"}
@app.get("/items/{item_id}")
async def read_item(item_id: int):