1 2 3 4 5 6 7
use crate::app::{EXIT_SUCCESS, ExitCode}; /// Launch the interactive assistant (default, no subcommand). pub fn handle() -> ExitCode { eprintln!("eclaw — interactive mode not yet implemented"); EXIT_SUCCESS }