diff --git a/lib/http.py b/lib/http.py index 65070de..1386ff0 100644 --- a/lib/http.py +++ b/lib/http.py @@ -47,6 +47,10 @@ async def process_item(message: Dict[str, Any]): else: return {"message": "No Message Callback, Passing"} +@app.head("/ping") +def process_item(): + return {"pong": 1} + @app.get("/ping") def process_item(): return {"pong": 1}