317f7fffa9
* added hacky routes to return nymnodes alongside legacy nodes * fixed mixing role * Update client (#5054) * removed hacky mixnodes endpoint for its not used * construct explorer-api client with timeout --------- Co-authored-by: Dinko Zdravac <173912580+dynco-nym@users.noreply.github.com>
11 lines
270 B
Rust
11 lines
270 B
Rust
// Copyright 2024 - Nym Technologies SA <contact@nymtech.net>
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
use std::time::Duration;
|
|
|
|
pub(crate) mod http;
|
|
pub(crate) mod location;
|
|
pub(crate) mod models;
|
|
|
|
pub(crate) const CACHE_ENTRY_TTL: Duration = Duration::from_secs(1200);
|