GlobalProtect-openconnect/apps/gpclient/src/main.rs
2024-04-15 20:27:33 +08:00

13 lines
253 B
Rust

mod cli;
mod connect;
mod disconnect;
mod launch_gui;
pub(crate) const GP_CLIENT_LOCK_FILE: &str = "/var/run/gpclient.lock";
pub(crate) const GP_CLIENT_PORT_FILE: &str = "/var/run/gpclient.port";
#[tokio::main]
async fn main() {
cli::run().await;
}