blob: 8015c840b43d9876aeadf0cbc16e9fe19df1d736 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import Stream from './stream';
/**
* Messaging index stream connection
*/
export default class Connection extends Stream {
constructor(me) {
super('messaging-index', {
i: me.token
});
}
}
|