This commit is contained in:
Daniel Edrisian
2025-08-26 08:29:22 -07:00
parent 5273034e7b
commit d5485d7e17

View File

@@ -52,12 +52,6 @@ pub fn discover_prompts_in_excluding(dir: &Path, exclude: &HashSet<String>) -> V
out
}
/// Discover prompt files in the default prompts directory, excluding any with names in `exclude`.
pub(crate) fn discover_prompts_excluding(exclude: &HashSet<String>) -> Vec<CustomPrompt> {
let dir = default_prompts_dir();
discover_prompts_in_excluding(&dir, exclude)
}
#[cfg(test)]
mod tests {
use super::*;