UNPKG

probot

Version:

A framework for building GitHub Apps to automate and improve your workflow

11 lines 330 B
export const pingHandler = (req, res) => { if (req.method === "GET") { const path = req.url?.split("?")[0] || ""; if (path === "/ping") { res.writeHead(200, { "content-type": "text/plain" }).end("PONG"); return true; } } return false; }; //# sourceMappingURL=ping.js.map