mirror of
https://github.com/sim1222/misskey.git
synced 2025-08-03 23:16:28 +09:00
15 lines
186 B
JavaScript
15 lines
186 B
JavaScript
'use strict';
|
|
|
|
import Stream from './stream';
|
|
|
|
/**
|
|
* Server stream connection
|
|
*/
|
|
class Connection extends Stream {
|
|
constructor() {
|
|
super('server');
|
|
}
|
|
}
|
|
|
|
export default Connection;
|