1//! Branch feature — types and operations for Git branches. 2 3pub mod ops; 4pub mod types; 5 6pub use ops::*; 7pub use types::*;