mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-30 01:27:31 +08:00
feat: add ci support for mock server (#8742)
Co-authored-by: yashasvi.kapil <yashasvi.kapil@juspay.in> Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com> Co-authored-by: iemyashasvi <iemyashasvi@gmail.com> Co-authored-by: chikke srujan <121822803+srujanchikke@users.noreply.github.com>
This commit is contained in:
@ -145,6 +145,7 @@ pub enum RoutableConnectors {
|
||||
Santander,
|
||||
Shift4,
|
||||
Signifyd,
|
||||
Silverflow,
|
||||
Square,
|
||||
Stax,
|
||||
Stripe,
|
||||
@ -315,6 +316,7 @@ pub enum Connector {
|
||||
Redsys,
|
||||
Santander,
|
||||
Shift4,
|
||||
Silverflow,
|
||||
Square,
|
||||
Stax,
|
||||
Stripe,
|
||||
@ -495,6 +497,7 @@ impl Connector {
|
||||
| Self::Redsys
|
||||
| Self::Santander
|
||||
| Self::Shift4
|
||||
| Self::Silverflow
|
||||
| Self::Square
|
||||
| Self::Stax
|
||||
| Self::Stripebilling
|
||||
@ -668,6 +671,7 @@ impl From<RoutableConnectors> for Connector {
|
||||
RoutableConnectors::Santander => Self::Santander,
|
||||
RoutableConnectors::Shift4 => Self::Shift4,
|
||||
RoutableConnectors::Signifyd => Self::Signifyd,
|
||||
RoutableConnectors::Silverflow => Self::Silverflow,
|
||||
RoutableConnectors::Square => Self::Square,
|
||||
RoutableConnectors::Stax => Self::Stax,
|
||||
RoutableConnectors::Stripe => Self::Stripe,
|
||||
@ -795,6 +799,7 @@ impl TryFrom<Connector> for RoutableConnectors {
|
||||
Connector::Santander => Ok(Self::Santander),
|
||||
Connector::Shift4 => Ok(Self::Shift4),
|
||||
Connector::Signifyd => Ok(Self::Signifyd),
|
||||
Connector::Silverflow => Ok(Self::Silverflow),
|
||||
Connector::Square => Ok(Self::Square),
|
||||
Connector::Stax => Ok(Self::Stax),
|
||||
Connector::Stripe => Ok(Self::Stripe),
|
||||
|
||||
Reference in New Issue
Block a user