Files
codex/codex-rs/apply-patch/src/lib.rs
2026-04-14 17:29:28 -07:00

6 lines
141 B
Rust

#[cfg_attr(target_arch = "wasm32", path = "wasm.rs")]
#[cfg_attr(not(target_arch = "wasm32"), path = "native.rs")]
mod imp;
pub use imp::*;