summaryrefslogtreecommitdiff
path: root/src/web/app/common/scripts/requests-stream.ts
blob: df342693a7aeb391065d2c6fc1e6d27bd2c34bcd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import Stream from './stream';

/**
 * Requests stream connection
 */
class Connection extends Stream {
	constructor() {
		super('requests');
	}
}

export default Connection;