Wallet/js/models/storage/Base.js
Ryan X. Charles 96a6203bb0 make my code work with the latest interface changes
...to Wallet and WalletFactory
2014-04-16 21:13:35 -03:00

27 lines
468 B
JavaScript

'use strict';
var imports = require('soop').imports();
function Storage() {
}
// get value by key
Storage.prototype.get = function(walletId,k) {
};
// set value for key
Storage.prototype.set = function(walletId,v) {
};
// remove value for key
Storage.prototype.remove = function(walletId, k) {
};
Storage.prototype.getWalletIds = function() {
};
// remove all values
Storage.prototype.clearAll = function() {
};
module.exports = require('soop')(Storage);