mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-27 11:24:45 +08:00
feat(checkbook_io): connector integrate ACH (#8730)
Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
@ -80,7 +80,7 @@ pub enum RoutableConnectors {
|
||||
Celero,
|
||||
Chargebee,
|
||||
Custombilling,
|
||||
// Checkbook,
|
||||
Checkbook,
|
||||
Checkout,
|
||||
Coinbase,
|
||||
Coingate,
|
||||
@ -246,7 +246,7 @@ pub enum Connector {
|
||||
Cashtocode,
|
||||
Celero,
|
||||
Chargebee,
|
||||
// Checkbook,
|
||||
Checkbook,
|
||||
Checkout,
|
||||
Coinbase,
|
||||
Coingate,
|
||||
@ -440,7 +440,7 @@ impl Connector {
|
||||
| Self::Cashtocode
|
||||
| Self::Celero
|
||||
| Self::Chargebee
|
||||
// | Self::Checkbook
|
||||
| Self::Checkbook
|
||||
| Self::Coinbase
|
||||
| Self::Coingate
|
||||
| Self::Cryptopay
|
||||
@ -613,7 +613,7 @@ impl From<RoutableConnectors> for Connector {
|
||||
RoutableConnectors::Celero => Self::Celero,
|
||||
RoutableConnectors::Chargebee => Self::Chargebee,
|
||||
RoutableConnectors::Custombilling => Self::Custombilling,
|
||||
// RoutableConnectors::Checkbook => Self::Checkbook,
|
||||
RoutableConnectors::Checkbook => Self::Checkbook,
|
||||
RoutableConnectors::Checkout => Self::Checkout,
|
||||
RoutableConnectors::Coinbase => Self::Coinbase,
|
||||
RoutableConnectors::Cryptopay => Self::Cryptopay,
|
||||
@ -742,7 +742,7 @@ impl TryFrom<Connector> for RoutableConnectors {
|
||||
Connector::Cashtocode => Ok(Self::Cashtocode),
|
||||
Connector::Celero => Ok(Self::Celero),
|
||||
Connector::Chargebee => Ok(Self::Chargebee),
|
||||
// Connector::Checkbook => Ok(Self::Checkbook),
|
||||
Connector::Checkbook => Ok(Self::Checkbook),
|
||||
Connector::Checkout => Ok(Self::Checkout),
|
||||
Connector::Coinbase => Ok(Self::Coinbase),
|
||||
Connector::Coingate => Ok(Self::Coingate),
|
||||
|
||||
Reference in New Issue
Block a user