mirror of
https://iceshrimp.dev/iceshrimp/iceshrimp
synced 2025-01-02 03:32:51 +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;
|