mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-28 04:04:55 +08:00
fix(router): outgoing webhook api call (#1193)
This commit is contained in:
committed by
GitHub
parent
1f52a66452
commit
31a52d8058
@ -91,5 +91,8 @@ pub enum OutgoingWebhookContent {
|
||||
DisputeDetails(Box<disputes::DisputeResponse>),
|
||||
}
|
||||
|
||||
pub trait OutgoingWebhookType: Serialize + From<OutgoingWebhook> + Sync + Send {}
|
||||
pub trait OutgoingWebhookType:
|
||||
Serialize + From<OutgoingWebhook> + Sync + Send + std::fmt::Debug
|
||||
{
|
||||
}
|
||||
impl OutgoingWebhookType for OutgoingWebhook {}
|
||||
|
||||
Reference in New Issue
Block a user