pacmanager_wrapper 0.1.1

A utility to interact with any package manager on any Linux distro
Documentation
1
2
3
4
5
6
7
8
9
10
/// An error which could be returned while doing an action
#[derive(thiserror::Error, Debug)]
pub enum PacManagerError {
    #[error("the action is unimplemented by the package manager")]
    UnimplementedAction,
    #[error("the supplied package manager is unsupported")]
    UnsupportedPacManager,
    #[error("the package manager returned an error while executing the command")]
    InternalPacManagerError(String),
}