summaryrefslogtreecommitdiff
path: root/src/web/app/common
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2017-11-01 00:10:30 +0900
committersyuilo <syuilotan@yahoo.co.jp>2017-11-01 00:10:30 +0900
commit346c2959e058fa445ebb82e71eb37ef023ba6bd4 (patch)
tree26d44a71d2ceaa032793d162ffb5988c5bb28e23 /src/web/app/common
parentwip (diff)
downloadsharkey-346c2959e058fa445ebb82e71eb37ef023ba6bd4.tar.gz
sharkey-346c2959e058fa445ebb82e71eb37ef023ba6bd4.tar.bz2
sharkey-346c2959e058fa445ebb82e71eb37ef023ba6bd4.zip
wip
Diffstat (limited to 'src/web/app/common')
-rw-r--r--src/web/app/common/scripts/channel-stream.js14
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;