feat(router): add gateway_status_map CRUD APIs (#2809)

This commit is contained in:
Sai Harsha Vardhan
2023-11-09 18:13:38 +05:30
committed by GitHub
parent 8b151898dc
commit 5c9e235bd3
16 changed files with 402 additions and 4 deletions

View File

@ -142,6 +142,7 @@ pub fn mk_app(
.service(routes::Files::server(state.clone()))
.service(routes::Disputes::server(state.clone()))
.service(routes::Routing::server(state.clone()))
.service(routes::Gsm::server(state.clone()))
}
#[cfg(all(feature = "olap", feature = "kms"))]