mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-17 23:44:39 -05:00
12 lines
272 B
JavaScript
12 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;
|