chat / api /server /controllers /EndpointController.js
helloya20's picture
Upload 2345 files
f0743f4 verified
const { getEndpointsConfig } = require('~/server/services/Config');
async function endpointController(req, res) {
const endpointsConfig = await getEndpointsConfig(req);
res.send(JSON.stringify(endpointsConfig));
}
module.exports = endpointController;