//! The CLI's error type.
//!
//! `geopackage::Error` covers what the library does; a tool also writes files
//! and parses arguments, which it has no variants for and should not grow them
//! for. This wraps it rather than widening it.
/// Anything a subcommand can fail with.
pub type Result<T> = Result;