vopono_core 0.1.4

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

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

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

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

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