Skip to content

Commit 2df3a55

Browse files
authored
Merge pull request #332 from wpengine/feat-health-check
feat: health check endpoint
2 parents ef03fb5 + e0b51d7 commit 2df3a55

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/pages/api/healthz.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
export default function handler(_req, res) {
2+
res.status(200).json({ status: "ok" });
3+
}

0 commit comments

Comments
 (0)