git_paw/lib.rs
1//! git-paw — Parallel AI Worktrees.
2//!
3//! Orchestrates multiple AI coding CLI sessions across git worktrees
4//! from a single terminal using tmux.
5
6pub mod cli;
7pub mod config;
8pub mod detect;
9pub mod dirs;
10pub mod error;
11pub mod git;
12pub mod interactive;
13pub mod session;
14pub mod tmux;