diff --git a/src/app.ts b/src/app.ts index 29345b1..167115f 100644 --- a/src/app.ts +++ b/src/app.ts @@ -38,5 +38,5 @@ app.post('/api/auth/logout', checkJwt, authController.logout.bind(authController app.get('/api/auth/whoiam', authController.whoIam.bind(authController)); app.listen(3002, '0.0.0.0', () => { - console.log("Auth service is running on port 3003"); + console.log("Auth service is running on port 3002"); });