feat(connector): [PAYSTACK] Template PR (#7285)

Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
Sagnik Mitra
2025-02-27 13:33:01 +05:30
committed by GitHub
parent 65cfaaeca4
commit 5965d0f8ac
28 changed files with 1328 additions and 11 deletions

View File

@ -109,6 +109,7 @@ pub enum RoutableConnectors {
Payme,
Payone,
Paypal,
Paystack,
Payu,
Placetopay,
Powertranz,
@ -250,6 +251,7 @@ pub enum Connector {
Payme,
Payone,
Paypal,
Paystack,
Payu,
Placetopay,
Powertranz,
@ -398,6 +400,7 @@ impl Connector {
| Self::Payme
| Self::Payone
| Self::Paypal
| Self::Paystack
| Self::Payu
| Self::Placetopay
| Self::Powertranz
@ -529,6 +532,7 @@ impl From<RoutableConnectors> for Connector {
RoutableConnectors::Payme => Self::Payme,
RoutableConnectors::Payone => Self::Payone,
RoutableConnectors::Paypal => Self::Paypal,
RoutableConnectors::Paystack => Self::Paystack,
RoutableConnectors::Payu => Self::Payu,
RoutableConnectors::Placetopay => Self::Placetopay,
RoutableConnectors::Powertranz => Self::Powertranz,