This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
// Use this produce and consume jobs from AWS SQS as a normal queue list. | |
// Just add as a mixin and listen to your queues | |
const { Consumer } = require('sqs-consumer'); | |
const Producer = require('sqs-producer'); | |
const _ = require('lodash'); | |
const AWS = require('aws-sdk'); |