1
0
forked from mirror/misskey
mi.moris.day/src/web/app/common/scripts/streaming/requests-stream.ts

11 lines
162 B
TypeScript
Raw Normal View History

2017-11-13 19:58:29 +09:00
import Stream from './stream';
/**
* Requests stream connection
*/
2017-11-17 01:24:44 +09:00
export default class Connection extends Stream {
2017-11-13 19:58:29 +09:00
constructor() {
super('requests');
}
}