added private messages, better cache tracking and channel/server creation/deletion and signals

This commit is contained in:
hydrabolt
2015-08-13 21:43:55 +01:00
parent 70c20c63ea
commit 68d93a0d7a
4 changed files with 174 additions and 8 deletions

6
lib/PMChannel.js Normal file
View File

@@ -0,0 +1,6 @@
var User = require("./user.js").User;
exports.PMChannel = function(user, id){
this.user = new User(user);
this.id = id;
}