은승우

Update app.js

Showing 1 changed file with 4 additions and 1 deletions
......@@ -182,6 +182,9 @@ function handleEvent(event) {
});
}
app.listen(3000, function () {
app.listen(3000, function () {
console.log('Linebot listening on port 3000!');
});
app.get('/',(req,res)=>{
res.send("hellow");
})
......