mirror of
https://iceshrimp.dev/iceshrimp/iceshrimp
synced 2025-01-04 20:52:54 +09:00
13 lines
171 B
TypeScript
13 lines
171 B
TypeScript
|
import Stream from './stream';
|
||
|
|
||
|
/**
|
||
|
* Server stream connection
|
||
|
*/
|
||
|
class Connection extends Stream {
|
||
|
constructor() {
|
||
|
super('server');
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default Connection;
|