mizzkey/src/web/app/common/scripts/channel-stream.js
2017-11-01 00:10:30 +09:00

15 lines
188 B
JavaScript

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