niftygate_certificate/
lib.rs

1pub mod command;
2pub(crate) mod constants;
3pub(crate) mod load;
4pub(crate) mod parse;
5
6pub use command::Command;
7
8#[derive(Debug)]
9pub(crate) struct RawCertificate(Vec<u8>);