Wallet/plugins/googleDrive.js

11 lines
194 B
JavaScript
Raw Normal View History

2014-09-01 16:31:35 -03:00
'use strict';
function GoogleDrive() {
this.type = 'STORAGE';
};
GoogleDrive.prototype.init = function() {
console.log('[googleDrive.js.3] init'); //TODO
};
module.exports = GoogleDrive;