From f27b974dbaa151a1a595cd21f62715673587f877 Mon Sep 17 00:00:00 2001 From: Sergiu Toma Date: Wed, 17 Jan 2024 16:50:11 +0200 Subject: [PATCH] Update OK response route / --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index adbf45e..3f0ff61 100644 --- a/app.js +++ b/app.js @@ -37,7 +37,7 @@ let videoCalls = {}; let socketDetails = {}; app.get('/', (_req, res) => { - res.send('OK'); + res.send('OK Sergiu'); }); app.use('/sfu', express.static(path.join(__dirname, 'public')));