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

@@ -40,6 +40,10 @@ impl MetaPlugin for MetaPluginProgram {
fn is_supported(&self) -> bool {
self.supported
}
fn is_internal(&self) -> bool {
false
}
fn create(&self) -> Result<Box<dyn Write>> {
debug!("META: Writing using {:?}", *self);