1
0
Files
pawkey-sk/src/web/app/common/scripts/drive-stream.ts
T
syuilo a8c6d0ed90 #465
2017-11-16 23:46:36 +09:00

15 lines
193 B
TypeScript

import Stream from './stream';
/**
* Drive stream connection
*/
class Connection extends Stream {
constructor(me) {
super('drive', {
i: me.token
});
}
}
export default Connection;