Files
codex/codex-rs/exec-server/src/main.rs
2025-11-19 00:20:19 +00:00

12 lines
249 B
Rust

#[cfg(target_os = "windows")]
fn main() {
eprintln!("codex-exec-server is not implemented on Windows targets");
std::process::exit(1);
}
#[cfg(not(target_os = "windows"))]
mod posix;
#[cfg(not(target_os = "windows"))]
pub use posix::main;