ping pong :)

This commit is contained in:
Marta Borgia Leiva 2026-01-27 11:16:17 +01:00
parent abd4d5e988
commit d76a50f5f0

View file

@ -8,3 +8,7 @@ app = FastAPI()
app.include_router(tasks_router) app.include_router(tasks_router)
app.include_router(projects_router) app.include_router(projects_router)
"""ping pong :)"""
@app.get("/ping")
def ping():
return {"message": "pong"}