This commit is contained in:
syuilo
2017-11-01 00:10:30 +09:00
parent f87ec61e96
commit 346c2959e0
5 changed files with 227 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
'use strict';
import Stream from './stream';
/**
* Channel stream connection
*/
class Connection extends Stream {
constructor() {
super('channel');
}
}
export default Connection;