quill-code/src/domain/tools/list_objects.rs
taggart_comet edf99cb06a init
2026-01-11 12:12:03 +02:00

27 lines
487 B
Rust

use crate::domain::tools::Tool;
pub struct FindObjects;
impl Tool for FindObjects {
fn name(&self) -> &'static str {
"find_objects"
}
fn work(&self, _input: &str) -> &'static str {
""
}
fn desc(&self) -> &'static str {
"Lists objects by query (stub)"
}
fn format(&self) -> &'static str {
"
input:
file_name: string # full path to the file
query: string # what to search for
output:
results: array[string]
"
}
}