mirror of
https://github.com/openai/codex.git
synced 2026-04-24 22:54:54 +00:00
10 lines
245 B
Rust
10 lines
245 B
Rust
use codex_arg0::arg0_dispatch_or_else;
|
|
use codex_mcp_server::run_main;
|
|
|
|
fn main() -> anyhow::Result<()> {
|
|
arg0_dispatch_or_else(|codex_linux_sandbox_exe| async move {
|
|
run_main(codex_linux_sandbox_exe).await?;
|
|
Ok(())
|
|
})
|
|
}
|