Wallet/js/models/core/Settings.js

18 lines
290 B
JavaScript
Raw Normal View History

2014-09-03 13:11:32 -03:00
'use strict';
var preconditions = require('preconditions').singleton();
var log = require('../../log');
var copayConfig = require('../../../config');
function Settings(opts) {
var self = this;
}
2014-09-03 13:17:59 -03:00
Settings.prototype.toObj = function() {
return {
}
};
2014-09-03 13:11:32 -03:00
module.exports = Settings;