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