Skip to main content

codetether_agent/provenance/
mod.rs

1mod claim;
2mod git;
3mod hook;
4mod identity;
5mod repo;
6mod signature;
7mod types;
8
9pub use claim::ClaimProvenance;
10pub use git::{git_commit_with_provenance, git_commit_with_provenance_blocking};
11pub use hook::install_commit_msg_hook;
12pub use identity::{git_author_email, git_author_name};
13pub use repo::enrich_from_repo;
14pub use signature::sign_provenance;
15pub use types::{ExecutionOrigin, ExecutionProvenance};