snglpi/src/controllers/processCommentsController.js

12 lines
335 B
JavaScript
Raw Normal View History

2025-10-13 06:06:52 -03:00
const {fetchCommentsFromServiceNow } = require('../services/servicenowService');
const { syncCommentsGlpitoSN } = require('../services/glpiCommentService');
const processCommentsController = async () => {
await fetchCommentsFromServiceNow();
await syncCommentsGlpitoSN();
}
module.exports = {
processCommentsController
}