use std::error::Error; pub fn run(root_path: std::path::PathBuf) -> Result<(), Box> { println!("Starting the TUI editor at {:?}", root_path); Ok(()) }