mirror of
https://github.com/openai/codex.git
synced 2026-04-30 03:12:20 +03:00
9 lines
174 B
Rust
9 lines
174 B
Rust
use anyhow::Result;
|
|
use clap::Parser;
|
|
use codex_network_proxy::Args;
|
|
|
|
#[tokio::main]
|
|
async fn main() -> Result<()> {
|
|
codex_network_proxy::run_main(Args::parse()).await
|
|
}
|