mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-21 09:52:06 +03:00
5edd056a61
no issue - idex.js files are meant to expose the API of the module and not contain code - Next step would be reworking the code to use class/injection pattern
18 lines
278 B
JavaScript
18 lines
278 B
JavaScript
const {
|
|
BATCH_SIZE,
|
|
SuccessfulBatch,
|
|
FailedBatch,
|
|
processEmail,
|
|
processEmailBatch,
|
|
send
|
|
} = require('./bulk-email-processor');
|
|
|
|
module.exports = {
|
|
BATCH_SIZE,
|
|
SuccessfulBatch,
|
|
FailedBatch,
|
|
processEmail,
|
|
processEmailBatch,
|
|
send
|
|
};
|