Skip to content

Commit

Permalink
Update app.js
Browse files Browse the repository at this point in the history
  • Loading branch information
tf7software authored Sep 26, 2024
1 parent 291da7c commit 8d7e9d6
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions app.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@ app.get('/', (req, res) => {
res.sendFile(path.join(__dirname, 'views/index.html'));
});

app.get('/', (req, res) => {
res.sendFile(path.join(__dirname, 'views/pacman.html'));
});


// Serve homepage
app.get('/snake', (req, res) => {
res.sendFile(path.join(__dirname, 'views/snake.html'));
Expand Down

0 comments on commit 8d7e9d6

Please sign in to comment.