const {fetchCommentsFromServiceNow } = require('../services/servicenowService'); const { syncCommentsGlpitoSN } = require('../services/glpiCommentService'); const processCommentsController = async () => { await fetchCommentsFromServiceNow(); await syncCommentsGlpitoSN(); } module.exports = { processCommentsController }