summaryrefslogtreecommitdiffstats
path: root/lib/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/index.js')
-rw-r--r--lib/index.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/index.js b/lib/index.js
index 5a3c00e..3a1802a 100644
--- a/lib/index.js
+++ b/lib/index.js
@@ -1,7 +1,9 @@
var Book = require('./models/book');
var Parse = require('./parse');
+var cli = require('./cli');
module.exports = {
Book: Book,
- Parse: Parse
+ Parse: Parse,
+ commands: cli.commands
};