Add messaging widget

This commit is contained in:
syuilo 2017-11-14 00:54:16 +09:00
parent 0a994e5b98
commit ab2293aa4c
14 changed files with 186 additions and 7 deletions

View file

@ -0,0 +1,14 @@
import Stream from './stream';
/**
* Messaging index stream connection
*/
class Connection extends Stream {
constructor(me) {
super('messaging-index', {
i: me.token
});
}
}
export default Connection;