mirror of
https://github.com/openai/codex.git
synced 2026-04-25 23:24:55 +00:00
10 lines
203 B
Rust
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::*;
|