git_worktree_cli/core/
mod.rs

1//! Core business logic for git worktree management
2//!
3//! This module contains the core functionality that is independent of the CLI
4//! interface and external API providers.
5
6pub mod project;
7pub mod utils;
8
9// Re-export commonly used types
10pub use project::Project;