chore: remove tty plugin and related code

Co-authored-by: aider (openai/andrew.openrouter.qwen.qwen3-coder) <aider@aider.chat>
This commit is contained in:
Andrew Phillips
2025-07-29 14:46:36 -03:00
parent b6b810e232
commit ebefa22074

View File

@@ -33,7 +33,6 @@ pub enum MetaPluginType {
ReadRate,
Hostname,
FullHostname,
Tty,
}
pub trait MetaPlugin {
@@ -76,7 +75,6 @@ pub fn get_meta_plugin(meta_plugin_type: MetaPluginType) -> Box<dyn MetaPlugin>
MetaPluginType::ReadRate => Box::new(ReadRateMetaPlugin::new()),
MetaPluginType::Hostname => Box::new(HostnameMetaPlugin::new()),
MetaPluginType::FullHostname => Box::new(FullHostnameMetaPlugin::new()),
MetaPluginType::Tty => Box::new(TtyMetaPlugin::new()),
}
}