diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2017-11-01 00:10:30 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2017-11-01 00:10:30 +0900 |
| commit | 346c2959e058fa445ebb82e71eb37ef023ba6bd4 (patch) | |
| tree | 26d44a71d2ceaa032793d162ffb5988c5bb28e23 /src/web/app/common/scripts | |
| parent | wip (diff) | |
| download | sharkey-346c2959e058fa445ebb82e71eb37ef023ba6bd4.tar.gz sharkey-346c2959e058fa445ebb82e71eb37ef023ba6bd4.tar.bz2 sharkey-346c2959e058fa445ebb82e71eb37ef023ba6bd4.zip | |
wip
Diffstat (limited to 'src/web/app/common/scripts')
| -rw-r--r-- | src/web/app/common/scripts/channel-stream.js | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/web/app/common/scripts/channel-stream.js b/src/web/app/common/scripts/channel-stream.js new file mode 100644 index 0000000000..38e7d91132 --- /dev/null +++ b/src/web/app/common/scripts/channel-stream.js @@ -0,0 +1,14 @@ +'use strict'; + +import Stream from './stream'; + +/** + * Channel stream connection + */ +class Connection extends Stream { + constructor() { + super('channel'); + } +} + +export default Connection; |