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 fixsub;
12pub mod git;
13pub mod key;
14pub mod report;
15pub mod stamp;
16pub mod stmb;
17pub mod submodules;