feat: res.send message

This commit is contained in:
karishmas6
2024-09-09 05:17:37 +05:30
parent 7866e98864
commit 7813c9849b

View File

@@ -31,7 +31,7 @@ app.use('/workflow', workflow);
app.use('/storage', storage);
app.get('/', function (req, res) {
return res.send('Welcome to the BR recorder server :-)');
return res.send('Maxun server started 🚀');
});
server.listen(SERVER_PORT, () => logger.log('info',`Server listening on port ${SERVER_PORT}`));