Skip to content

Commit

Permalink
Add ping endpoint to test CD
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmadSaeedGoda committed Mar 29, 2024
1 parent 5429a80 commit 7ce9868
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/services/auth/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ app.get('/public-key', (req, res) => {

app.use(bodyParser.json());

app.get('/ping', (req, res) => {
return res.send("pong!");
});

app.use('/auth', authRouter);

app.use(errorHandler);
Expand Down

0 comments on commit 7ce9868

Please sign in to comment.