Skip to main content

git_worktree_manager/operations/
mod.rs

1/// Operations module — business logic for all commands.
2pub mod ai_tools;
3pub mod backup;
4pub mod busy;
5pub mod busy_messages;
6pub mod claude_process;
7pub mod claude_session;
8pub mod clean;
9pub mod config_ops;
10pub mod delete_batch;
11pub mod diagnostics;
12pub mod display;
13pub mod git_ops;
14pub mod global_ops;
15pub mod guard;
16pub mod helpers;
17pub mod launchers;
18pub mod lockfile;
19pub mod path_cmd;
20pub mod pr_cache;
21pub mod setup_claude;
22pub mod shell;
23pub mod spawn_spec;
24pub mod stash;
25#[cfg(test)]
26pub(crate) mod test_env;
27pub mod worktree;