diff options
author | Soreine <nicolas@gitbook.com> | 2016-04-27 13:11:45 +0200 |
---|---|---|
committer | Soreine <nicolas@gitbook.com> | 2016-04-27 13:12:51 +0200 |
commit | 262ce03e46bf5f888ba792e4bb44df7ee7ccb751 (patch) | |
tree | f7185235474593dc03dfb480f2ac3aa49046b20b /lib/index.js | |
parent | 1906691a35b69c2fbfc38feb35aafa613e7d6810 (diff) | |
download | gitbook-262ce03e46bf5f888ba792e4bb44df7ee7ccb751.zip gitbook-262ce03e46bf5f888ba792e4bb44df7ee7ccb751.tar.gz gitbook-262ce03e46bf5f888ba792e4bb44df7ee7ccb751.tar.bz2 |
Exposes FS in public interface
Diffstat (limited to 'lib/index.js')
-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 }; |