mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-05 09:50:34 +03:00
11 lines
267 B
JavaScript
11 lines
267 B
JavaScript
|
module.exports = {
|
||
|
init({config, settings, logging = console}) {
|
||
|
return {
|
||
|
get mailgun() {
|
||
|
const Mailgun = require('./mailgun');
|
||
|
return new Mailgun({config, settings, logging});
|
||
|
}
|
||
|
};
|
||
|
}
|
||
|
};
|