use super::{OpRef, StateRef};
use camino::Utf8PathBuf;
#[derive(Debug)]
pub struct Request {
pub start_state: StateRef,
pub end_state: StateRef,
pub start_file: Option<Utf8PathBuf>,
pub end_file: Option<Utf8PathBuf>,
pub through: Vec<OpRef>,
pub workdir: Utf8PathBuf,
}