Integrate migrate-cli workflow

This commit is contained in:
rka-oai
2025-11-06 10:34:15 -08:00
parent 63e1ef25af
commit a9c7852206
19 changed files with 1137 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
use clap::Parser;
use codex_cli::migrate::MigrateCli;
fn main() {
if let Err(err) = MigrateCli::parse().run() {
eprintln!("{err:?}");
std::process::exit(1);
}
}