File size: 257 Bytes
f0743f4
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
const { getEndpointsConfig } = require('~/server/services/Config');

async function endpointController(req, res) {
  const endpointsConfig = await getEndpointsConfig(req);
  res.send(JSON.stringify(endpointsConfig));
}

module.exports = endpointController;