'use strict'; module.exports = { routes: [ { method: 'GET', path: '/paroles/export', handler: 'parole.export', config: { policies: [], middlewares: [] }, }, { method: 'POST', path: '/paroles/bulk-translate', handler: 'parole.bulkTranslate', config: { policies: [], middlewares: [] }, }, ], };