mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-06-05 04:26:58 +00:00
10 lines
158 B
TypeScript
10 lines
158 B
TypeScript
import Stream from './stream';
|
|
|
|
/**
|
|
* Server stream connection
|
|
*/
|
|
export default class Connection extends Stream {
|
|
constructor() {
|
|
super('server');
|
|
}
|
|
}
|