11 lines
194 B
JavaScript
11 lines
194 B
JavaScript
'use strict';
|
|
|
|
function GoogleDrive() {
|
|
this.type = 'STORAGE';
|
|
};
|
|
|
|
GoogleDrive.prototype.init = function() {
|
|
console.log('[googleDrive.js.3] init'); //TODO
|
|
};
|
|
|
|
module.exports = GoogleDrive;
|