use command::CommandResult;
use error::Result;
use host::Host;
use super::*;
pub struct Ports;
impl Provider for Ports {
fn get_providers(&self) -> Providers {
Providers::Ports
}
#[allow(unused_variables)]
fn is_active(&self, host: &mut Host) -> Result<bool> {
Ok(false)
}
#[allow(unused_variables)]
fn is_installed(&self, host: &mut Host, name: &str) -> Result<bool> {
unimplemented!();
}
#[allow(unused_variables)]
fn install(&self, host: &mut Host, name: &str) -> Result<CommandResult> {
unimplemented!();
}
#[allow(unused_variables)]
fn uninstall(&self, host: &mut Host, name: &str) -> Result<CommandResult> {
unimplemented!();
}
}