new CopayPeer class. Peers working!

This commit is contained in:
Matias Alejo Garcia 2014-04-08 18:35:43 -03:00
commit fab2c8a505
7 changed files with 357 additions and 241 deletions

8
js/models/Peer.js Normal file
View file

@ -0,0 +1,8 @@
function Peer(id) {
this.id = id;
};
module.exports = require('soop')(Peer);