add simple healthcheck endpoint

This commit is contained in:
Ben Phelps 2022-09-06 09:13:48 +03:00
parent 939f5d7c20
commit 8373057758

View File

@ -0,0 +1,3 @@
export default function handler(req, res) {
res.send("up");
}