use crate::file_watcher::FileWatchError;
use clankerdiff_git::GitError;
#[derive(Debug, thiserror::Error)]
pub enum WatchError {
#[error(transparent)]
Git(#[from] GitError),
#[error(transparent)]
FileWatch(#[from] FileWatchError),
#[error("the repository watcher has stopped")]
Stopped,
}