Skip to content

Commit

Permalink
Added about route
Browse files Browse the repository at this point in the history
  • Loading branch information
rasika-sarang authored Jul 15, 2024
1 parent ab8bf99 commit 288bb74
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion server.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,11 @@ app.use(express.json());

app.get('/', (req, res) => {
res.send('Hello World')
})
});

app.get('/about', (req, res) => {
res.send('About route 🎉 ')
});

app.post('/api/getdecryptedkey', (request, response) => {
console.log("Request Body", request.body);
Expand Down

0 comments on commit 288bb74

Please sign in to comment.