2017-11-14 00:54:16 +09:00
|
|
|
import Stream from './stream';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Messaging index stream connection
|
|
|
|
*/
|
2017-11-17 01:24:44 +09:00
|
|
|
export default class Connection extends Stream {
|
2017-11-14 00:54:16 +09:00
|
|
|
constructor(me) {
|
|
|
|
super('messaging-index', {
|
|
|
|
i: me.token
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|