1#![doc = include_str!("../README.md")]
2
3#[cfg(feature = "cli")]
4pub mod cli;
5pub mod commands;
6mod error;
7pub mod utils;
8
9pub use error::Error;
10
11pub mod core {
13 pub use voa_core::{
14 VerifierWriter,
15 identifiers::{
16 Context,
17 CustomContext,
18 CustomRole,
19 CustomTechnology,
20 IdentifierString,
21 Mode,
22 Os,
23 Purpose,
24 Role,
25 Technology,
26 },
27 };
28}
29
30pub mod openpgp {
32 pub use voa_openpgp::{
33 OpenpgpCert,
34 OpenpgpSignature,
35 OpenpgpSignatureCheck,
36 lookup::VerifierLookup,
37 };
38}