clide/src/tui.rs

7 lines
171 B
Rust
Raw Normal View History

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