pkgcruft-git 0.0.5

QA support for verifying git commits via pkgcruft
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod error;
pub mod git;
pub mod proto;
pub mod service;
mod uds;

pub use self::error::Error;
pub use self::proto::pkgcruft_client::PkgcruftClient as Client;

/// A `Result` alias where the `Err` case is `pkgcruft_git::Error`.
pub type Result<T> = std::result::Result<T, Error>;