mirror of
https://github.com/pchuan98/codex.git
synced 2026-07-01 00:31:56 +08: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");
|
|
}
|