summaryrefslogtreecommitdiff
path: root/src/web/app/common/scripts/server-stream.ts
blob: a1c466b35de6fba26fb5184c5318a2fcd7a511d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
'use strict';

import Stream from './stream';

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

export default Connection;