jormungandr-bite/src/web/app/common/scripts/channel-stream.js

17 lines
226 B
JavaScript
Raw Normal View History

2017-10-31 09:10:30 -06:00
'use strict';
import Stream from './stream';
/**
* Channel stream connection
*/
class Connection extends Stream {
2017-10-31 12:17:14 -06:00
constructor(channelId) {
super('channel', {
channel: channelId
});
2017-10-31 09:10:30 -06:00
}
}
export default Connection;