8 lines
194 B
Rust
8 lines
194 B
Rust
use super::*;
|
|
|
|
pub(crate) struct FunctionContext<'run> {
|
|
pub(crate) dotenv: &'run BTreeMap<String, String>,
|
|
pub(crate) invocation_directory: &'run Path,
|
|
pub(crate) search: &'run Search,
|
|
}
|