mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-11-06 13:38:01 +00:00
12 lines
165 B
JavaScript
12 lines
165 B
JavaScript
/* eslint-env node */
|
|
'use strict';
|
|
|
|
module.exports = function(environment) {
|
|
let ENV = {
|
|
modulePrefix: 'replication',
|
|
environment,
|
|
};
|
|
|
|
return ENV;
|
|
};
|