Showing
1 changed file
with
4 additions
and
1 deletions
... | @@ -182,6 +182,9 @@ function handleEvent(event) { | ... | @@ -182,6 +182,9 @@ function handleEvent(event) { |
182 | 182 | ||
183 | }); | 183 | }); |
184 | } | 184 | } |
185 | - app.listen(3000, function () { | 185 | + app.listen(3000, function () { |
186 | console.log('Linebot listening on port 3000!'); | 186 | console.log('Linebot listening on port 3000!'); |
187 | }); | 187 | }); |
188 | +app.get('/',(req,res)=>{ | ||
189 | + res.send("hellow"); | ||
190 | +}) | ... | ... |
-
Please register or login to post a comment