Wallet/plugins/googleDrive.js
Matias Alejo Garcia c0360e7beb plugin system v0
2014-09-15 14:07:43 -03:00

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;