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.
56pub mod project;
7pub mod utils;
89// Re-export commonly used types
10pub use project::Project;