started adding copay shell to copay

This commit is contained in:
Gordon Hall 2014-06-06 14:23:40 -04:00
commit e7c5addfab
19 changed files with 781 additions and 3 deletions

5
app.js
View file

@ -13,3 +13,8 @@ app.start = function(port, callback) {
};
module.exports = app;
// if we are running in the copay shell context, initialize the shell bindings
if (process.versions && process.versions['atom-shell']) {
require('./shell')(app);
}