mirror of
https://github.com/openai/codex.git
synced 2026-04-28 10:21:06 +03:00
13 lines
231 B
Rust
13 lines
231 B
Rust
#[path = "../command_runner_win.rs"]
|
|
mod win;
|
|
|
|
#[cfg(target_os = "windows")]
|
|
fn main() -> anyhow::Result<()> {
|
|
win::main()
|
|
}
|
|
|
|
#[cfg(not(target_os = "windows"))]
|
|
fn main() {
|
|
panic!("codex-command-runner is Windows-only");
|
|
}
|