Skip to content

Commit

Permalink
Arreglo
Browse files Browse the repository at this point in the history
  • Loading branch information
uo277310 committed May 1, 2024
1 parent 7c43461 commit 4c2078a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion gatewayservice/gateway-service.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
const express = require('express');
const axios = require('axios');
const cors = require('cors');
const promBundle = require('express-prom-bundle');
//libraries required for OpenAPI-Swagger
const swaggerUi = require('swagger-ui-express');
Expand All @@ -18,7 +19,7 @@ const genQuestServiceUrl = process.env.GEN_SERVICE_URL || 'http://localhost:8003
const rankingServiceUrl = process.env.RANK_SERVICE_URL || 'http://localhost:8004';
const questiongeneratorserviceUrl = process.env.QTEST_SERVICE_URL || 'http://localhost:8007';

app.use();
app.use(cors());
app.use(express.json());

//Prometheus configuration
Expand Down

0 comments on commit 4c2078a

Please sign in to comment.