feat: cards info api (#749)

Co-authored-by: Jagan <jaganelavarasan@gmail.com>
Co-authored-by: Kartikeya Hegde <karthikey.hegde@juspay.in>
Co-authored-by: Arun Raj M <jarnura47@gmail.com>
This commit is contained in:
Narayan Bhat
2023-03-28 19:04:58 +05:30
committed by GitHub
parent 20b4372bfe
commit b15b8f7b43
27 changed files with 1336 additions and 299 deletions

View File

@ -121,6 +121,7 @@ pub fn mk_app(
{
server_app = server_app.service(routes::StripeApis::server(state.clone()));
}
server_app = server_app.service(routes::Cards::server(state.clone()));
server_app = server_app.service(routes::Health::server(state));
server_app
}