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