Add exec-server transport for unified exec

This commit is contained in:
starr-openai
2026-03-13 16:04:13 -07:00
parent e9050e3e64
commit c0e1b31f4d
23 changed files with 1607 additions and 7 deletions

View File

@@ -0,0 +1,7 @@
#[tokio::main]
async fn main() {
if let Err(err) = codex_exec_server::run_main().await {
eprintln!("{err}");
std::process::exit(1);
}
}