Files
codex/codex-rs/network-proxy/src/lib.rs

10 lines
203 B
Rust

#![deny(clippy::print_stdout, clippy::print_stderr)]
#[cfg(not(target_arch = "wasm32"))]
include!("native.rs");
#[cfg(target_arch = "wasm32")]
mod wasm;
#[cfg(target_arch = "wasm32")]
pub use wasm::*;