feat(router): add route to invalidate cache entry (#1100)

Co-authored-by: jeeva <jeeva.ramu@codurance.com>
Co-authored-by: Sanchith Hegde <22217505+SanchithHegde@users.noreply.github.com>
This commit is contained in:
Jeeva
2023-06-21 08:40:03 +01:00
committed by GitHub
parent 2b71d4d8c4
commit 21f2ccd47c
14 changed files with 271 additions and 43 deletions

View File

@ -138,7 +138,9 @@ 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::Cache::server(state.clone()));
server_app = server_app.service(routes::Health::server(state));
server_app
}