feat: Add is_internal method to MetaPlugin trait and implementations

Co-authored-by: aider (openai/andrew/openrouter/qwen/qwen3-coder) <aider@aider.chat>
This commit is contained in:
Andrew Phillips
2025-08-11 12:11:00 -03:00
parent 6588c827be
commit e8eaf7aeb1
3 changed files with 52 additions and 0 deletions

View File

@@ -41,6 +41,10 @@ pub trait MetaPlugin {
true
}
fn is_internal(&self) -> bool {
false
}
fn create(&self) -> Result<Box<dyn Write>>;
fn finalize(&mut self) -> io::Result<String>;