2022-06-18 21:56:31 -07:00
|
|
|
use super::*;
|
2019-04-15 22:40:02 -07:00
|
|
|
|
2019-12-07 03:09:21 -08:00
|
|
|
pub(crate) struct FunctionContext<'run> {
|
2021-09-16 06:44:40 -07:00
|
|
|
pub(crate) dotenv: &'run BTreeMap<String, String>,
|
2019-12-25 06:12:06 -08:00
|
|
|
pub(crate) invocation_directory: &'run Path,
|
2021-09-16 06:44:40 -07:00
|
|
|
pub(crate) search: &'run Search,
|
2019-04-15 22:40:02 -07:00
|
|
|
}
|