git-worktree-cli 0.5.2

Enhanced git worktree management with real-time streaming output
Documentation
1
2
3
4
5
6
7
8
9
10
//! Core business logic for git worktree management
//!
//! This module contains the core functionality that is independent of the CLI
//! interface and external API providers.

pub mod project;
pub mod utils;

// Re-export commonly used types
pub use project::Project;