1
0
forked from mirror/misskey
mi.moris.day/src/web/app/common/scripts/channel-stream.js

15 lines
188 B
JavaScript
Raw Normal View History

2017-11-01 00:10:30 +09:00
'use strict';
import Stream from './stream';
/**
* Channel stream connection
*/
class Connection extends Stream {
constructor() {
super('channel');
}
}
export default Connection;