mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-04-29 18:16:58 +00:00
14 lines
186 B
JavaScript
14 lines
186 B
JavaScript
'use strict';
|
|
|
|
import Stream from './stream';
|
|
|
|
/**
|
|
* Server stream connection
|
|
*/
|
|
class Connection extends Stream {
|
|
constructor() {
|
|
super('server');
|
|
}
|
|
}
|
|
|
|
export default Connection;
|