vs-core 0.0.1

Core orchestration services for the vs version manager.
Documentation
1
2
3
4
5
6
7
8
use crate::{App, CoreError};

impl App {
    /// Removes a plugin from the local home.
    pub fn remove_plugin(&self, name: &str) -> Result<bool, CoreError> {
        self.registry.remove_plugin(name).map_err(Into::into)
    }
}