1
2
3
4
5
6
7
8
#[derive(Debug, thiserror::Error)]
pub enum Error {
	#[error("I/O error:  {0}")]
	IO(#[from] std::io::Error),
	#[error("HTTP error:  {0}")]
	HTTP(#[from] reqwest::Error)
}