1pub mod commands; 2pub mod config; 3pub mod file_ops; 4pub mod git; 5 6use anyhow::Result; 7 8pub fn run() -> Result<()> { 9 Ok(()) 10}