use std::io;
#[derive(thiserror::Error, Debug)]
pub(crate) enum Error {
#[error("unsupported workflow file type: {0}")]
UnsupportedWorkflow(String),
#[error("error reading data: {0}")]
Io(#[from] io::Error),
#[error(transparent)]
Runtime(#[from] anyhow::Error),
}