blob: 0da3f12554fcf14a5b6295e31ba2fc30321daed7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import Stream from './stream';
/**
* Drive stream connection
*/
export default class Connection extends Stream {
constructor(me) {
super('drive', {
i: me.token
});
}
}
|