0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-10 23:36:14 -05:00
ghost/core/server/data/sephiroth/index.js
2016-10-10 18:31:32 +01:00

11 lines
272 B
JavaScript

function Sephiroth(options) {
options = options || {};
this.commands = require('./lib/commands');
this.utils = require('./lib/utils');
this.database = require('./lib/database');
this.database.connect(options.database);
}
module.exports = Sephiroth;