mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-07 03:22:21 +03:00
10 lines
183 B
JavaScript
10 lines
183 B
JavaScript
|
var cards = require('./cards'),
|
||
|
atoms = require('./atoms');
|
||
|
module.exports = {
|
||
|
cards: cards,
|
||
|
atoms: atoms,
|
||
|
activate: function () {
|
||
|
// needed by ghost
|
||
|
}
|
||
|
};
|