summaryrefslogtreecommitdiff
path: root/server/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'server/index.js')
-rw-r--r--server/index.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/server/index.js b/server/index.js
index 0d058ae..2ccd121 100644
--- a/server/index.js
+++ b/server/index.js
@@ -6,6 +6,7 @@ import dotenv from 'dotenv';
import userRoutes from './routes/users.js';
import healthRoutes from './routes/health.js';
+import otpRoutes from './routes/otp.js';
const app = Express();
dotenv.config();
@@ -16,6 +17,7 @@ app.use(cors());
app.use('/', healthRoutes);
app.use('/', userRoutes);
+app.use('/', otpRoutes);
const CONNECTION_URL = process.env.CONNECTION_URL;
const PORT = process.env.PORT;