mirror of
https://github.com/openai/codex.git
synced 2026-04-28 10:21:06 +03:00
8 lines
160 B
Rust
8 lines
160 B
Rust
#[tokio::main]
|
|
async fn main() {
|
|
if let Err(err) = codex_exec_server::run_main().await {
|
|
eprintln!("{err}");
|
|
std::process::exit(1);
|
|
}
|
|
}
|