ng_client_ws/lib.rs
1// All rights reserved.
2// Licensed under the Apache License, Version 2.0
3// <LICENSE-APACHE2 or http://www.apache.org/licenses/LICENSE-2.0>
4// or the MIT license <LICENSE-MIT or http://opensource.org/licenses/MIT>,
5// at your option. All files in the project carrying such
6// notice may not be copied, modified, or distributed except
7// according to those terms.
8
9#[cfg(not(target_arch = "wasm32"))]
10pub mod remote_ws;
11
12#[cfg(target_arch = "wasm32")]
13pub mod remote_ws_wasm;