use thiserror::Error;
#[derive(Debug, Error)]
pub enum FilesError {
#[error("file not found: {0}")]
NotFound(String),
#[error("storage error: {0}")]
Storage(String),
#[error("repository error: {0}")]
Repository(#[from] sqlx::Error),
#[error("io error: {0}")]
Io(#[from] std::io::Error),
#[error("validation error: {0}")]
Validation(String),
#[error("config error: {0}")]
Config(String),
#[error(transparent)]
Other(#[from] anyhow::Error),
}
pub type FilesResult<T> = Result<T, FilesError>;