iceshrimp-legacy/src/web/app/common/scripts/server-stream.ts

15 lines
186 B
TypeScript
Raw Normal View History

2017-06-08 18:03:54 +02:00
'use strict';
import Stream from './stream';
/**
* Server stream connection
*/
class Connection extends Stream {
constructor() {
super('server');
}
}
export default Connection;