diff options
author | Samy Pessé <samypesse@gmail.com> | 2016-04-27 13:13:38 +0200 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2016-04-27 13:13:38 +0200 |
commit | 7574b01863e7c8a55bacc07f38dd4180baa41d62 (patch) | |
tree | 3b24c20ee374996f642d3db00a6d5b0478d33eaa /lib | |
parent | 98e739a12b4ad211f6a213cb63ecf7ebcc6dc2df (diff) | |
parent | 262ce03e46bf5f888ba792e4bb44df7ee7ccb751 (diff) | |
download | gitbook-7574b01863e7c8a55bacc07f38dd4180baa41d62.zip gitbook-7574b01863e7c8a55bacc07f38dd4180baa41d62.tar.gz gitbook-7574b01863e7c8a55bacc07f38dd4180baa41d62.tar.bz2 |
Merge remote-tracking branch 'origin/fixes' into fixes
Diffstat (limited to 'lib')
-rw-r--r-- | lib/index.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/index.js b/lib/index.js index 3a1802a..a772efe 100644 --- a/lib/index.js +++ b/lib/index.js @@ -1,9 +1,11 @@ var Book = require('./models/book'); +var FS = require('./models/fs'); var Parse = require('./parse'); var cli = require('./cli'); module.exports = { Book: Book, Parse: Parse, + FS: FS, commands: cli.commands }; |