pkgcruft_git/
lib.rs

1mod error;
2pub mod git;
3pub mod proto;
4pub mod service;
5mod uds;
6
7pub use self::error::Error;
8pub use self::proto::pkgcruft_client::PkgcruftClient as Client;
9
10/// A `Result` alias where the `Err` case is `pkgcruft_git::Error`.
11pub type Result<T> = std::result::Result<T, Error>;