git_workflow/lib.rs
1//! git-workflow - Git workflow CLI
2//!
3//! Type-safe worktree-aware git operations with compile-time protection
4//! for protected branches.
5
6pub mod cli;
7pub mod commands;
8pub mod error;
9pub mod git;
10pub mod github;
11pub mod output;
12pub mod state;
13
14pub use error::{GwError, Result};