Files
codex/codex-rs/windows-sandbox-rs/src/bin/command_runner.rs
iceweasel-oai 3e81ed4b91 Elevated Sandbox 3 (#7809)
dedicated sandbox command runner exe.
2025-12-11 13:51:27 -08:00

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");
}