yet another webhook change :)

This commit is contained in:
Djkato 2023-02-08 18:29:27 +01:00
parent bf0422f0e6
commit 69bf9e3bed

View file

@ -14,7 +14,9 @@ http.createServer(function (req, res) {
} }
}) })
res.end() res.writeHead(200, { 'Content-Type': 'text/plain' })
res.end('Hello World\n')
}).listen(5050, "127.0.0.1", () => { }).listen(5050, "127.0.0.1", () => {
console.log(`Server is running on http://"127.0.0.1":5050`) console.log(`Server is running on http://"127.0.0.1":5050`)
}) })