Added communication structure

This commit is contained in:
logsol 2012-07-08 01:37:53 +02:00
parent 980af70259
commit 94f63fc7b2
10 changed files with 292 additions and 129 deletions

12
lib/Client/Consumer.js Normal file
View file

@ -0,0 +1,12 @@
define(function() {
function Consumer() {
}
Consumer.prototype.init = function(){
return null;
}
return Consumer;
});