diff --git a/server.js b/server.js index 9619bd1..57b3302 100644 --- a/server.js +++ b/server.js @@ -10,6 +10,10 @@ app.get('/end2', (req, res) => { res.send('Hello world2!'); }); +app.get('/end3', (req, res) => { + res.send('Hello world3!'); +}); + app.listen(port, () => { console.log(`Server running at http://localhost:${port}`); });