mirror of
https://github.com/openai/codex.git
synced 2026-09-17 12:23:33 +00:00
12 lines
249 B
Rust
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;
|