mirror of
https://github.com/ouch-org/ouch.git
synced 2025-07-21 00:50:14 +00:00
8 lines
195 B
Rust
8 lines
195 B
Rust
use crate::Error;
|
|
|
|
pub fn no_support() -> Error {
|
|
Error::UnsupportedFormat {
|
|
reason: "RAR support is disabled for this build, possibly due to licensing restrictions.".into(),
|
|
}
|
|
}
|