logo
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![deny(rust_2018_idioms)]
#![doc(
    html_logo_url = "https://storage.googleapis.com/fdo-gitlab-uploads/project/avatar/3213/zbus-logomark.png"
)]
#![doc = include_str!("../README.md")]

mod error;
pub use error::*;

pub mod policykit1;

#[cfg(doctest)]
mod doctests {
    doc_comment::doctest!("../README.md");
}