Skip to main content

gkit_core/
lib.rs

1//! gkit-core — shared library for the gkit toolkit.
2//!
3//! Side effects go through `git` (a `Git` trait, shelling out to the real binary),
4//! so logic stays unit-testable. It houses the `clone`, `logoff`, `stmb`, and
5//! `key` logic behind the `gkit` CLI.
6
7pub mod checks;
8pub mod clone;
9pub mod conf;
10pub mod config;
11pub mod git;
12pub mod key;
13pub mod report;
14pub mod stmb;
15pub mod submodules;