mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-12-27 15:54:50 +00:00
19 lines
370 B
JavaScript
19 lines
370 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import config from '../config/environment';
|
|
|
|
export function initialize(/* application */) {
|
|
// attach mount hooks to the environment config
|
|
// context will be the router DSL
|
|
config.addRootMounts = function () {
|
|
this.mount('replication');
|
|
};
|
|
}
|
|
|
|
export default {
|
|
initialize,
|
|
};
|