ouch/src/archive/rar_stub.rs
2023-12-14 23:32:17 -03:00

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(),
}
}