wip
This commit is contained in:
parent
f87ec61e96
commit
346c2959e0
5 changed files with 227 additions and 0 deletions
14
src/web/app/common/scripts/channel-stream.js
Normal file
14
src/web/app/common/scripts/channel-stream.js
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
'use strict';
|
||||
|
||||
import Stream from './stream';
|
||||
|
||||
/**
|
||||
* Channel stream connection
|
||||
*/
|
||||
class Connection extends Stream {
|
||||
constructor() {
|
||||
super('channel');
|
||||
}
|
||||
}
|
||||
|
||||
export default Connection;
|
||||
Loading…
Add table
Add a link
Reference in a new issue