Added message framework

This commit is contained in:
hydrabolt
2015-08-15 15:25:51 +01:00
parent b0fb506221
commit 4e3b6262ca
4 changed files with 191 additions and 81 deletions

View File

@@ -14,7 +14,7 @@ exports.Channel = function(name, server, type, id, isPrivate){
this.type = type;
this.id = id;
this.isPrivate = isPrivate;
this.messages = new List("id", "5000");
}
exports.Channel.equals = function(otherChannel){