mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-15 09:43:08 +02:00
13 lines
175 B
TypeScript
13 lines
175 B
TypeScript
|
import Stream from './stream';
|
||
|
|
||
|
/**
|
||
|
* Requests stream connection
|
||
|
*/
|
||
|
class Connection extends Stream {
|
||
|
constructor() {
|
||
|
super('requests');
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default Connection;
|