1
2
3
4
5
6
7
8
pub mod site;
pub use crate::site::Site;

#[derive(thiserror::Error, Debug)]
pub enum Error {
    #[error(transparent)]
    UnexpectedError(#[from] anyhow::Error),
}