feat: import routes for record, storage, workflow

This commit is contained in:
karishmas6
2024-05-30 04:50:30 +05:30
parent 66428b7204
commit ea7a3ea2c6

View File

@@ -26,6 +26,10 @@ export const io = new Server(server);
*/
export const browserPool = new BrowserPool();
app.use('/record', record);
app.use('/workflow', workflow);
app.use('/storage', storage);
app.get('/', function (req, res) {
return res.send('Welcome to the BR recorder server :-)');
});