feat(refunds_v2): Add refund create core flow (#7619)

Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
Amey Wale
2025-04-21 14:05:27 +05:30
committed by GitHub
parent 73eb467d32
commit eabef328c6
28 changed files with 1459 additions and 134 deletions

View File

@ -154,7 +154,9 @@ pub fn mk_app(
#[cfg(all(feature = "v2", feature = "oltp"))]
{
server_app = server_app.service(routes::PaymentMethodSession::server(state.clone()));
server_app = server_app
.service(routes::PaymentMethodSession::server(state.clone()))
.service(routes::Refunds::server(state.clone()));
}
#[cfg(feature = "v1")]