feat(connector): [Tokenex]Add external vault insert and retrieve flows (#9470)

Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
Prasunna Soppa
2025-09-23 12:46:39 +05:30
committed by GitHub
parent e410af26ff
commit 62b64d84ec
16 changed files with 240 additions and 473 deletions

View File

@ -177,6 +177,7 @@ pub enum BillingConnectors {
pub enum VaultConnectors {
Vgs,
HyperswitchVault,
Tokenex,
}
impl From<VaultConnectors> for Connector {
@ -184,6 +185,7 @@ impl From<VaultConnectors> for Connector {
match value {
VaultConnectors::Vgs => Self::Vgs,
VaultConnectors::HyperswitchVault => Self::HyperswitchVault,
VaultConnectors::Tokenex => Self::Tokenex,
}
}
}