mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-29 09:07:09 +08:00
feat(connector): [DWOLLA] - Add template code (#8496)
Co-authored-by: Vani Gupta <vani.gupta@juspay.in> Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
@ -84,6 +84,7 @@ pub enum RoutableConnectors {
|
||||
Deutschebank,
|
||||
Digitalvirgo,
|
||||
Dlocal,
|
||||
// Dwolla,
|
||||
Ebanx,
|
||||
Elavon,
|
||||
Facilitapay,
|
||||
@ -241,6 +242,7 @@ pub enum Connector {
|
||||
Deutschebank,
|
||||
Digitalvirgo,
|
||||
Dlocal,
|
||||
// Dwolla,
|
||||
Ebanx,
|
||||
Elavon,
|
||||
Facilitapay,
|
||||
@ -418,6 +420,7 @@ impl Connector {
|
||||
| Self::Deutschebank
|
||||
| Self::Digitalvirgo
|
||||
| Self::Dlocal
|
||||
// | Self::Dwolla
|
||||
| Self::Ebanx
|
||||
| Self::Elavon
|
||||
| Self::Facilitapay
|
||||
@ -580,6 +583,7 @@ impl From<RoutableConnectors> for Connector {
|
||||
RoutableConnectors::Deutschebank => Self::Deutschebank,
|
||||
RoutableConnectors::Digitalvirgo => Self::Digitalvirgo,
|
||||
RoutableConnectors::Dlocal => Self::Dlocal,
|
||||
// RoutableConnectors::Dwolla => Self::Dwolla,
|
||||
RoutableConnectors::Ebanx => Self::Ebanx,
|
||||
RoutableConnectors::Elavon => Self::Elavon,
|
||||
RoutableConnectors::Facilitapay => Self::Facilitapay,
|
||||
@ -699,6 +703,7 @@ impl TryFrom<Connector> for RoutableConnectors {
|
||||
Connector::Deutschebank => Ok(Self::Deutschebank),
|
||||
Connector::Digitalvirgo => Ok(Self::Digitalvirgo),
|
||||
Connector::Dlocal => Ok(Self::Dlocal),
|
||||
// Connector::Dwolla => Ok(Self::Dwolla),
|
||||
Connector::Ebanx => Ok(Self::Ebanx),
|
||||
Connector::Elavon => Ok(Self::Elavon),
|
||||
Connector::Facilitapay => Ok(Self::Facilitapay),
|
||||
|
||||
Reference in New Issue
Block a user