This commit is contained in:
syuilo 2017-11-16 23:46:36 +09:00
parent 3d3309282e
commit a8c6d0ed90
12 changed files with 91 additions and 29 deletions

View file

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