Skip to main content

vs_core/service/
remove.rs

1use crate::{App, CoreError};
2
3impl App {
4    /// Removes a plugin from the local home.
5    pub fn remove_plugin(&self, name: &str) -> Result<bool, CoreError> {
6        self.registry.remove_plugin(name).map_err(Into::into)
7    }
8}