Skip to main content

did_git_sign/
lib.rs

1//! Library entry point for `did-git-sign`.
2//!
3//! The binary at `src/main.rs` is a thin wrapper around the modules below.
4//! These modules are also reusable from other workspace crates — e.g.
5//! `openvtc` calls [`init::install`] from its setup wizard so it can
6//! configure git signing for a freshly-provisioned persona without
7//! re-running the VTA bootstrap.
8
9pub mod config;
10pub mod init;
11pub mod names;
12pub mod policy;
13pub mod sign;
14pub mod vta;