//! User-configured extra directories: a plain recursive `*.gguf` walk.
usestd::path::Path;usesuper::FoundFile;usecrate::registry::Ecosystem;pub(crate)fnscan_custom_root(root:&Path)->Vec<FoundFile>{if!root.is_dir(){returnVec::new();}super::walk_gguf(root,Ecosystem::Custom)}