b6213bc016
* remove [most of] legacy data from nym-api endpoints
* chore: removed contamination with legacy nodes data
* added /v1/nym-nodes/stake-saturation/{node_id}
* added /v1/legacy/mixnodes and /v1/legacy/gateways
* removed scraping of legacy mixnodes in NS api
* remove export of removed types
* huge warnings on attempting to use removed commands in the wallet
* fixed reference to removed type in tests
10 lines
242 B
Rust
10 lines
242 B
Rust
// Copyright 2022-2023 - Nym Technologies SA <contact@nymtech.net>
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
pub(crate) mod caching;
|
|
pub(crate) mod cli;
|
|
pub(crate) mod config;
|
|
pub(crate) mod http;
|
|
pub(crate) mod nyxd;
|
|
pub(crate) mod storage;
|