은승우

Update app.js

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