feat(connector): integrate payments void, sync and refund flows for Braintree (#73)

This commit is contained in:
Sahebjot singh
2022-12-13 13:03:25 +05:30
committed by GitHub
parent 7dca6f1e5a
commit b3fefeb2aa
5 changed files with 114 additions and 42 deletions

View File

@ -229,6 +229,7 @@ async fn send_request(
.await
}
Method::Put => client.put(url).add_headers(headers).send().await,
Method::Delete => client.delete(url).add_headers(headers).send().await,
}
.into_report()