summaryrefslogtreecommitdiff
path: root/makima/daemon/src/worktree/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'makima/daemon/src/worktree/mod.rs')
-rw-r--r--makima/daemon/src/worktree/mod.rs11
1 files changed, 0 insertions, 11 deletions
diff --git a/makima/daemon/src/worktree/mod.rs b/makima/daemon/src/worktree/mod.rs
deleted file mode 100644
index eb9f031..0000000
--- a/makima/daemon/src/worktree/mod.rs
+++ /dev/null
@@ -1,11 +0,0 @@
-//! Git worktree management for task isolation.
-//!
-//! Each task gets a unique git worktree with its own branch,
-//! providing isolation without the overhead of Docker containers.
-
-mod manager;
-
-pub use manager::{
- expand_tilde, is_new_repo_request, sanitize_name, short_uuid, ConflictResolution, MergeState,
- TaskBranchInfo, WorktreeError, WorktreeInfo, WorktreeManager,
-};