mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-03-04 07:18:50 -07:00
12 lines
175 B
TypeScript
12 lines
175 B
TypeScript
import Stream from './stream';
|
|
|
|
/**
|
|
* Requests stream connection
|
|
*/
|
|
class Connection extends Stream {
|
|
constructor() {
|
|
super('requests');
|
|
}
|
|
}
|
|
|
|
export default Connection;
|