1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-16 05:05:32 +02:00
Files
misskey/src/web/app/common/scripts/streaming/requests-stream.ts
2017-11-17 01:24:44 +09:00

11 lines
162 B
TypeScript

import Stream from './stream';
/**
* Requests stream connection
*/
export default class Connection extends Stream {
constructor() {
super('requests');
}
}