2019-04-15 22:40:02 -07:00
|
|
|
use crate::common::*;
|
|
|
|
|
2019-12-07 03:09:21 -08:00
|
|
|
pub(crate) struct FunctionContext<'run> {
|
2020-02-10 20:07:06 -08:00
|
|
|
pub(crate) dotenv: &'run BTreeMap<String, String>,
|
2019-12-25 06:12:06 -08:00
|
|
|
pub(crate) invocation_directory: &'run Path,
|
2020-02-10 20:07:06 -08:00
|
|
|
pub(crate) search: &'run Search,
|
2019-04-15 22:40:02 -07:00
|
|
|
}
|