ai_agent/services/plugins/plugin_installation_manager.rs
1pub async fn install_plugin(_plugin_id: &str) -> Result<PluginInfo, String> {
2 Err("Not implemented".to_string())
3}
4
5pub async fn uninstall_plugin(_plugin_id: &str) -> Result<(), String> {
6 Err("Not implemented".to_string())
7}
8
9#[derive(Debug, Clone)]
10pub struct PluginInfo {
11 pub name: String,
12 pub enabled: bool,
13}