0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-06 22:40:14 -05:00
ghost/core/server/lib/mobiledoc/index.js
kirrg001 5f5f0021db 🔥 Drop Node v4 Support
no issue

- support ends today
- see https://github.com/nodejs/Release
- removed `use strict`
2018-05-01 14:06:18 +02:00

17 lines
265 B
JavaScript

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