mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-28 20:23:43 +08:00
Call multiple connectors (#90)
This commit is contained in:
@ -7,7 +7,6 @@ mod verfiy_flow;
|
||||
|
||||
use async_trait::async_trait;
|
||||
|
||||
use super::PaymentData;
|
||||
use crate::{
|
||||
core::{errors::RouterResult, payments},
|
||||
routes::AppState,
|
||||
@ -35,10 +34,9 @@ pub trait Feature<F, T> {
|
||||
state: &AppState,
|
||||
connector: api::ConnectorData,
|
||||
maybe_customer: &Option<storage::Customer>,
|
||||
payment_data: PaymentData<F>,
|
||||
call_connector_action: payments::CallConnectorAction,
|
||||
storage_scheme: enums::MerchantStorageScheme,
|
||||
) -> (RouterResult<Self>, PaymentData<F>)
|
||||
) -> RouterResult<Self>
|
||||
where
|
||||
Self: std::marker::Sized,
|
||||
F: Clone,
|
||||
|
||||
Reference in New Issue
Block a user