ssh_cli/error.rs
1// SPDX-License-Identifier: MIT OR Apache-2.0
2// G-CLOSE-04: pure module — no `unsafe` permitted.
3#![forbid(unsafe_code)]
4//! Canonical error module path (`error.rs`) required by clap project layout rules.
5//!
6//! Implementation lives in [`crate::errors`]; this module re-exports it so both
7//! `use ssh_cli::error::*` and `use ssh_cli::errors::*` work.
8
9pub use crate::errors::*;