UNPKG

node-tenancy

Version:

Automatic multi-tenancy for Node with support to Rabbitmq

15 lines (11 loc) 231 B
let config = { "connection": null, "central_domains": [], }; function setConfig(configObj) { config = {...config, ...configObj}; } function getConfig() { return config; } module.exports = {config, setConfig, getConfig};