1 2 3 4 5 6 7 8 9 10
use std::collections::HashSet; use std::path::PathBuf; use systemprompt_models::services::ServicesConfig; pub(super) struct IncludeResolveCtx<'a> { pub visited: &'a mut HashSet<PathBuf>, pub merged: &'a mut ServicesConfig, pub chain: Vec<PathBuf>, }