crieur/crieur-retrieve/src/errors.rs
koalp 756b1592b7
feat: allows to remove elements of html pages
A feature to remove elements of html pages based on css selectors have
been added.

The removal of link element that load external js have been added.
2021-04-24 03:45:13 +02:00

8 lines
168 B
Rust

#[derive(thiserror::Error, Debug)]
pub enum Error {
#[error(transparent)]
Other(#[from] anyhow::Error),
}
pub type Result<T> = core::result::Result<T, Error>;