Sharkey/src/web/app/common/scripts/requests-stream.ts

13 lines
175 B
TypeScript
Raw Normal View History

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