From f8cee27714be4c2faa0d87941e23f8f3e25ba494 Mon Sep 17 00:00:00 2001 From: Nathan DuPont Date: Thu, 28 Mar 2024 00:57:22 -0700 Subject: [PATCH] test --- src/api/v1/api.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/api/v1/api.py b/src/api/v1/api.py index 30d4a45..6fd9cb6 100644 --- a/src/api/v1/api.py +++ b/src/api/v1/api.py @@ -10,6 +10,12 @@ def read_root(): return {"Hello": "World"} + + + + + + @app.get("/items/{item_id}") def read_item(item_id: int, q: Union[str, None] = None): return {"item_id": item_id, "q": q}