From fd4604d34e64cda26bd217f8cda42c3dde84ff3c Mon Sep 17 00:00:00 2001 From: simbayippy Date: Mon, 4 Nov 2024 02:53:58 +0800 Subject: [PATCH] remove label of backend --- user-service/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user-service/index.js b/user-service/index.js index 79781e1a1e..aa2b565f01 100644 --- a/user-service/index.js +++ b/user-service/index.js @@ -40,7 +40,7 @@ app.use((req, res, next) => { app.use(`${apiVersion}/users`, userRoutes); app.use(`${apiVersion}/auth`, authRoutes); -// Getting status of the service. +// Getting status of the service app.use(`${apiVersion}/ping`, (req, res, next) => { res.json({ message: 'Hello World from user-service',