GlobalProtect-openconnect/apps/gpclient/src/main.rs
2024-01-16 22:18:20 +08:00

12 lines
182 B
Rust

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