0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-20 22:42:53 -05:00
ghost/core/server/lib/mobiledoc/index.js

19 lines
280 B
JavaScript

'use strict';
module.exports = {
activate() {
// needed by ghost
},
get cards() {
return require('./cards');
},
get atoms() {
return require('./atoms');
},
get converters() {
return require('./converters');
}
};