mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-22 02:11:44 +03:00
1f68d8dc20
no-issue This removes duplications and reduces maintentence going forward.
10 lines
195 B
JavaScript
10 lines
195 B
JavaScript
const adapterManager = require('../../services/adapter-manager');
|
|
|
|
async function createAdapter() {
|
|
return adapterManager.getAdapter('scheduling');
|
|
}
|
|
|
|
module.exports = {
|
|
createAdapter
|
|
};
|