mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-11-02 04:04:43 +08:00
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
10 lines
292 B
Rust
10 lines
292 B
Rust
use common_utils::events::ApiEventMetric;
|
|
|
|
use crate::locker_migration::MigrateCardResponse;
|
|
|
|
impl ApiEventMetric for MigrateCardResponse {
|
|
fn get_api_event_type(&self) -> Option<common_utils::events::ApiEventsType> {
|
|
Some(common_utils::events::ApiEventsType::RustLocker)
|
|
}
|
|
}
|