gkit-core 0.7.1

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

pub mod checks;
pub mod clone;
pub mod conf;
pub mod config;
pub mod git;
pub mod key;
pub mod report;
pub mod stmb;
pub mod submodules;