From b7241e85bd679a5a76778eb7b3be7734d87b67c2 Mon Sep 17 00:00:00 2001 From: xfarrow Date: Thu, 22 Feb 2024 11:47:54 +0100 Subject: [PATCH] Update app.js --- backend/apis/nodejs/src/app.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/backend/apis/nodejs/src/app.js b/backend/apis/nodejs/src/app.js index f669499..ab8bca9 100644 --- a/backend/apis/nodejs/src/app.js +++ b/backend/apis/nodejs/src/app.js @@ -61,4 +61,6 @@ app.use('/api', protectedRoutes); // Routes requiring token const port = process.env.API_SERVER_PORT || 3000; app.listen(port, () => { console.log(`Blink API server is running on port ${port}`); -}); \ No newline at end of file +}); + +module.exports = app; \ No newline at end of file