refactor(Connector): [signifyd,threedsecureio,wellsfargopayout,wise] move from routers to hyperswitch_connectors (#7953)

This commit is contained in:
Nithin N
2025-05-13 14:59:39 +05:30
committed by GitHub
parent 04dc14a930
commit 1dabfe3e2c
24 changed files with 2379 additions and 2511 deletions

View File

@ -1,11 +1,7 @@
#[cfg(feature = "dummy_connector")]
pub mod dummyconnector;
pub mod signifyd;
pub mod stripe;
pub mod threedsecureio;
pub mod utils;
pub mod wellsfargopayout;
pub mod wise;
pub use hyperswitch_connectors::connectors::{
aci, aci::Aci, adyen, adyen::Adyen, adyenplatform, adyenplatform::Adyenplatform, airwallex,
@ -34,17 +30,16 @@ pub use hyperswitch_connectors::connectors::{
paystack, paystack::Paystack, payu, payu::Payu, placetopay, placetopay::Placetopay, plaid,
plaid::Plaid, powertranz, powertranz::Powertranz, prophetpay, prophetpay::Prophetpay, rapyd,
rapyd::Rapyd, razorpay, razorpay::Razorpay, recurly, recurly::Recurly, redsys, redsys::Redsys,
riskified, riskified::Riskified, shift4, shift4::Shift4, square, square::Square, stax,
stax::Stax, stripebilling, stripebilling::Stripebilling, taxjar, taxjar::Taxjar, thunes,
thunes::Thunes, trustpay, trustpay::Trustpay, tsys, tsys::Tsys, unified_authentication_service,
riskified, riskified::Riskified, shift4, shift4::Shift4, signifyd, signifyd::Signifyd, square,
square::Square, stax, stax::Stax, stripebilling, stripebilling::Stripebilling, taxjar,
taxjar::Taxjar, threedsecureio, threedsecureio::Threedsecureio, thunes, thunes::Thunes,
trustpay, trustpay::Trustpay, tsys, tsys::Tsys, unified_authentication_service,
unified_authentication_service::UnifiedAuthenticationService, volt, volt::Volt, wellsfargo,
wellsfargo::Wellsfargo, worldline, worldline::Worldline, worldpay, worldpay::Worldpay,
worldpayxml, worldpayxml::Worldpayxml, xendit, xendit::Xendit, zen, zen::Zen, zsl, zsl::Zsl,
wellsfargo::Wellsfargo, wellsfargopayout, wellsfargopayout::Wellsfargopayout, wise, wise::Wise,
worldline, worldline::Worldline, worldpay, worldpay::Worldpay, worldpayxml,
worldpayxml::Worldpayxml, xendit, xendit::Xendit, zen, zen::Zen, zsl, zsl::Zsl,
};
#[cfg(feature = "dummy_connector")]
pub use self::dummyconnector::DummyConnector;
pub use self::{
signifyd::Signifyd, stripe::Stripe, threedsecureio::Threedsecureio,
wellsfargopayout::Wellsfargopayout, wise::Wise,
};
pub use self::stripe::Stripe;