15 lines
188 B
JavaScript
15 lines
188 B
JavaScript
|
'use strict';
|
||
|
|
||
|
import Stream from './stream';
|
||
|
|
||
|
/**
|
||
|
* Channel stream connection
|
||
|
*/
|
||
|
class Connection extends Stream {
|
||
|
constructor() {
|
||
|
super('channel');
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default Connection;
|