forked from hashicorp/vault
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
44 lines (42 loc) · 1010 Bytes
/
Copy pathindex.js
File metadata and controls
44 lines (42 loc) · 1010 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/**
* Copyright IBM Corp. 2016, 2025
* SPDX-License-Identifier: BUSL-1.1
*/
// add all handlers here
// individual lookup done in mirage config
import base from './base';
import chrootNamespace from './chroot-namespace';
import clients from './clients';
import customLogin from './custom-login';
import customMessages from './custom-messages';
import database from './database';
import hcpLink from './hcp-link';
import kms from './kms';
import kubernetes from './kubernetes';
import ldap from './ldap';
import mfaConfig from './mfa-config';
import mfaLogin from './mfa-login';
import oidcConfig from './oidc-config';
import recovery from './recovery';
import reducedDisclosure from './reduced-disclosure';
import replication from './replication';
import sync from './sync';
export {
base,
chrootNamespace,
clients,
customLogin,
customMessages,
database,
hcpLink,
kms,
kubernetes,
ldap,
mfaConfig,
mfaLogin,
oidcConfig,
recovery,
reducedDisclosure,
replication,
sync,
};