gitgrip/lib.rs
1//! gitgrip - Multi-repo workflow tool
2//!
3//! A high-performance tool for managing multi-repository workspaces,
4//! with support for GitHub, GitLab, and Azure DevOps.
5
6pub mod cli;
7pub mod core;
8pub mod files;
9pub mod git;
10pub mod platform;
11pub mod telemetry;
12pub mod util;
13
14pub use core::manifest::Manifest;
15pub use core::repo::RepoInfo;
16pub use core::state::StateFile;