//! Library part of the `sopass` crate.
//!
//! While `sopass` is meant to be command line program, the core parts
//! are implemented as a library that can be used in other programs.
pub use Config;
/// Trait for lowest level sub-commands.
const DEFAULT_VALUES_FILENAME: &str = "values.sopass";
const DEFAULT_CERT_FILENAME: &str = "default.cert";
const DEFAULT_KEY_FILENAME: &str = "default.key";