mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-15 19:52:01 +03:00
12 lines
402 B
JavaScript
12 lines
402 B
JavaScript
|
var schema = require('./schema'),
|
||
|
checks = require('./checks'),
|
||
|
commands = require('./commands'),
|
||
|
versioning = require('./versioning'),
|
||
|
defaultSettings = require('./default-settings');
|
||
|
|
||
|
module.exports.tables = schema;
|
||
|
module.exports.checks = checks;
|
||
|
module.exports.commands = commands;
|
||
|
module.exports.versioning = versioning;
|
||
|
module.exports.defaultSettings = defaultSettings;
|