feat: use integration routes

This commit is contained in:
karishmas6
2024-09-17 21:03:15 +05:30
parent 60b8dc134f
commit f43524c650

View File

@@ -2,7 +2,7 @@ import express from 'express';
import http from 'http';
import cors from 'cors';
import 'dotenv/config';
import { record, workflow, storage, auth } from './routes';
import { record, workflow, storage, auth, integration } from './routes';
import { BrowserPool } from "./browser-management/classes/BrowserPool";
import logger from './logger'
import { SERVER_PORT } from "./constants/config";
@@ -29,6 +29,7 @@ app.use('/record', record);
app.use('/workflow', workflow);
app.use('/storage', storage);
app.use('/auth', auth);
app.use('/integration', integration);
app.get('/', function (req, res) {
return res.send('Maxun server started 🚀');