suture-cli 1.0.0

A patch-based version control system with semantic merge for structured files
1
2
3
4
5
pub(crate) async fn cmd_tui() -> Result<(), Box<dyn std::error::Error>> {
    let repo_path = std::path::Path::new(".");
    suture_tui::run(repo_path)?;
    Ok(())
}