remove glob template

This commit is contained in:
Ben Brandt 2025-08-07 17:59:55 +02:00
parent afb9554a28
commit c943f5a847
No known key found for this signature in database
GPG key ID: D4618C5D3B500571
2 changed files with 0 additions and 21 deletions

View file

@ -33,19 +33,6 @@ pub trait Template: Sized {
}
}
#[expect(
dead_code,
reason = "Marked as unused by Rust 1.89 and left as is as of 07 Aug 2025 to let AI team address it."
)]
#[derive(Serialize)]
pub struct GlobTemplate {
pub project_roots: String,
}
impl Template for GlobTemplate {
const TEMPLATE_NAME: &'static str = "glob.hbs";
}
#[derive(Serialize)]
pub struct SystemPromptTemplate<'a> {
#[serde(flatten)]

View file

@ -1,8 +0,0 @@
Find paths on disk with glob patterns.
Assume that all glob patterns are matched in a project directory with the following entries.
{{project_roots}}
When searching with patterns that begin with literal path components, e.g. `foo/bar/**/*.rs`, be
sure to anchor them with one of the directories listed above.