diff options
author | Samy Pesse <samypesse@gmail.com> | 2016-04-26 15:23:28 +0200 |
---|---|---|
committer | Samy Pesse <samypesse@gmail.com> | 2016-04-26 15:23:28 +0200 |
commit | fa17f1671685a97e88c84fdba6a94744c54a09b8 (patch) | |
tree | 63083c0645a1f88bc7e96d891ef9ec9509d7680a /lib/index.js | |
parent | ce99c8c7061eb9b4a2a5f4ff534d7fbeaf37cad0 (diff) | |
download | gitbook-fa17f1671685a97e88c84fdba6a94744c54a09b8.zip gitbook-fa17f1671685a97e88c84fdba6a94744c54a09b8.tar.gz gitbook-fa17f1671685a97e88c84fdba6a94744c54a09b8.tar.bz2 |
Add base for commands
Improve plugins installation
Diffstat (limited to 'lib/index.js')
-rw-r--r-- | lib/index.js | 4 |
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 }; |