refactor(router): add openapi spec support for gsm apis (#2871)

This commit is contained in:
Sai Harsha Vardhan
2023-11-16 18:48:42 +05:30
committed by GitHub
parent f248fe2889
commit 62c9ccae6a
8 changed files with 515 additions and 18 deletions

View File

@ -31,3 +31,9 @@ impl ApiEventMetric for gsm::GsmDeleteResponse {
Some(ApiEventsType::Gsm)
}
}
impl ApiEventMetric for gsm::GsmResponse {
fn get_api_event_type(&self) -> Option<ApiEventsType> {
Some(ApiEventsType::Gsm)
}
}