Files
Jędrzej Stuczyński 4890c528bc feat: mixFetch - the final countdown (#3737)
* mixFetch

* clippy

* removed redundant Arc over 'WasmStorage' in the 'ClientStorage'

---------

Co-authored-by: Fouad <fmtabbara@hotmail.co.uk>
2023-09-07 12:45:03 +01:00

12 lines
397 B
Rust

// Copyright 2023 - Nym Technologies SA <contact@nymtech.net>
// SPDX-License-Identifier: Apache-2.0
#[cfg(all(target_arch = "wasm32", feature = "client"))]
pub use nym_client_wasm as client;
#[cfg(all(target_arch = "wasm32", feature = "node-tester"))]
pub use nym_node_tester_wasm as node_tester;
#[cfg(all(target_arch = "wasm32", feature = "mix-fetch"))]
pub use mix_fetch_wasm as mix_fetch;