UNPKG

@unclepaul/allcountjs

Version:

The open source framework for rapid business application development with Node.js

9 lines 298 B
module.exports = function (appAccessRouter, integrationService) { return { configure: function () { appAccessRouter.get('/api/integrations', function (req, res) { res.json(integrationService.availableIntegrations()); }) } } };