mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-11 17:17:01 +02: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;
|
|
};
|