just/src/recipe_context.rs

8 lines
193 B
Rust
Raw Normal View History

use crate::common::*;
pub(crate) struct RecipeContext<'a> {
pub(crate) config: &'a Config,
pub(crate) scope: BTreeMap<&'a str, (bool, String)>,
pub(crate) working_directory: &'a Path,
}