From 698ccf14f28b05bd37267abc5ced0feb7e563762 Mon Sep 17 00:00:00 2001 From: n Date: Thu, 1 May 2025 05:13:51 +0100 Subject: [PATCH] removed sample endpoint --- app/main.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/app/main.py b/app/main.py index 5f76f5b..daf4873 100644 --- a/app/main.py +++ b/app/main.py @@ -44,7 +44,3 @@ def read_callback(code: str, state: str): } response = requests.post("https://api.monzo.com/oauth2/token", data=data) return response.json() - -@app.get("/items/{item_id}") -def read_item(item_id: int, q: Union[str, None] = None): - return {"item_id": item_id, "q": q}