mirror of
https://github.com/openai/codex.git
synced 2026-05-18 02:02:30 +00:00
6 lines
141 B
Rust
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::*;
|