summaryrefslogtreecommitdiff
path: root/app/routers/health.py
diff options
context:
space:
mode:
authorChristian Cleberg <[email protected]>2026-04-08 14:29:21 -0500
committerChristian Cleberg <[email protected]>2026-04-08 14:29:21 -0500
commita7c25076d16bde9ec928b9ef01bce952406ea7b1 (patch)
tree802c5f84902f240c6aab95acc1e6348dfbd806c2 /app/routers/health.py
downloadhutch-notify-a7c25076d16bde9ec928b9ef01bce952406ea7b1.tar.gz
hutch-notify-a7c25076d16bde9ec928b9ef01bce952406ea7b1.tar.bz2
hutch-notify-a7c25076d16bde9ec928b9ef01bce952406ea7b1.zip
initial commit
Diffstat (limited to 'app/routers/health.py')
-rw-r--r--app/routers/health.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/app/routers/health.py b/app/routers/health.py
new file mode 100644
index 0000000..794a09f
--- /dev/null
+++ b/app/routers/health.py
@@ -0,0 +1,8 @@
+from fastapi import APIRouter
+
+router = APIRouter(tags=["health"])
+
+
+async def health() -> dict:
+ return {"status": "ok"}