mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-01-16 02:21:01 -07:00
15 lines
188 B
JavaScript
15 lines
188 B
JavaScript
|
'use strict';
|
||
|
|
||
|
import Stream from './stream';
|
||
|
|
||
|
/**
|
||
|
* Channel stream connection
|
||
|
*/
|
||
|
class Connection extends Stream {
|
||
|
constructor() {
|
||
|
super('channel');
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default Connection;
|