yet another webhook change :)
This commit is contained in:
parent
bf0422f0e6
commit
69bf9e3bed
1 changed files with 3 additions and 1 deletions
|
@ -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`)
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue