Files
nym/explorer-api/src/gateways/location.rs
T
Pierre Dommerc dffe171b7f feat(explorer-api): add gateway geoip location (#3785)
* feat(explorer-api): add gateway geoip location

* fix lint
2023-08-21 15:50:18 +02:00

9 lines
246 B
Rust

// Copyright 2021 - Nym Technologies SA <contact@nymtech.net>
// SPDX-License-Identifier: Apache-2.0
use nym_contracts_common::IdentityKey;
use crate::location::LocationCache;
pub(crate) type GatewayLocationCache = LocationCache<IdentityKey>;