mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
11 lines
211 B
JavaScript
11 lines
211 B
JavaScript
// This object serves as a singleton to store config options
|
|
|
|
var extend = require("extend");
|
|
|
|
var config = module.exports = {
|
|
load: function (newOpts) {
|
|
extend(config, newOpts);
|
|
return config;
|
|
}
|
|
};
|