dffe171b7f
* feat(explorer-api): add gateway geoip location * fix lint
9 lines
246 B
Rust
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>;
|