1 2 3 4 5 6 7 8 9 10 11
// src/bin/soma-cli.rs // Interactive CLI binary for SOMA Core agent collaboration use soma_core::cli::start_interactive_cli; fn main() { if let Err(e) = start_interactive_cli() { eprintln!("❌ Error: {}", e); std::process::exit(1); } }