From cdebca88e7cb865dcd388a09b7a998b6b48bfac0 Mon Sep 17 00:00:00 2001 From: tf7software <160179762+tf7software@users.noreply.github.com> Date: Fri, 27 Sep 2024 13:12:39 -0700 Subject: [PATCH] Update app.js --- app.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app.js b/app.js index f3b9eb8..2f65db1 100644 --- a/app.js +++ b/app.js @@ -30,6 +30,11 @@ app.get('/pacman', (req, res) => { res.sendFile(path.join(__dirname, 'views/pacman.html')); }); +app.get('/view', (req, res) => { + res.sendFile(path.join(__dirname, 'views/view.html')); +}); + + // Serve homepage app.get('/snake', (req, res) => {