1 2 3 4 5 6 7 8
use std::process; fn main() { if let Err(e) = embeddenator_cli::run() { eprintln!("Error: {}", e); process::exit(1); } }