7 lines
171 B
Rust
7 lines
171 B
Rust
|
|
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(())
|
||
|
|
}
|