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

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

export default Connection;