summaryrefslogtreecommitdiffstats
path: root/lib/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/index.js')
-rw-r--r--lib/index.js2
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
};