mirror of
https://iceshrimp.dev/iceshrimp/iceshrimp
synced 2025-01-04 20:52:54 +09:00
13 lines
200 B
TypeScript
13 lines
200 B
TypeScript
import Stream from './stream';
|
|
|
|
/**
|
|
* Messaging index stream connection
|
|
*/
|
|
export default class Connection extends Stream {
|
|
constructor(me) {
|
|
super('messaging-index', {
|
|
i: me.token
|
|
});
|
|
}
|
|
}
|