mirror of
https://github.com/openai/codex.git
synced 2026-09-17 12:23:33 +00:00
8 lines
124 B
Rust
8 lines
124 B
Rust
use exec_command_mcp::run_main;
|
|
|
|
#[tokio::main]
|
|
async fn main() -> anyhow::Result<()> {
|
|
run_main().await?;
|
|
Ok(())
|
|
}
|