vopono_core 0.1.4

Library code for running VPN connections in network namespaces
Documentation
mod openvpn;

use super::{ConfigurationChoice, OpenVpnProvider, Provider};
use crate::config::vpn::Protocol;

#[allow(clippy::upper_case_acronyms)]
pub struct HMA {}

impl Provider for HMA {
    fn alias(&self) -> String {
        "hma".to_string()
    }

    fn default_protocol(&self) -> Protocol {
        Protocol::OpenVpn
    }
}