mirror of
https://github.com/openai/codex.git
synced 2026-05-01 03:42:05 +03:00
10 lines
186 B
Rust
10 lines
186 B
Rust
use clap::Parser;
|
|
use codex_cli::migrate::MigrateCli;
|
|
|
|
fn main() {
|
|
if let Err(err) = MigrateCli::parse().run() {
|
|
eprintln!("{err:?}");
|
|
std::process::exit(1);
|
|
}
|
|
}
|