chant/worktree/mod.rs
1//! Worktree module - git worktree operations and agent status communication
2//!
3//! This module provides low-level git worktree operations and the agent status
4//! file format for communication between agents and the watch process.
5
6pub mod git_ops;
7pub mod status;
8
9// Re-export git operations for backward compatibility
10pub use git_ops::*;