mirror of
https://github.com/yuezk/GlobalProtect-openconnect.git
synced 2025-04-02 18:31:50 -04:00
9 lines
133 B
Rust
9 lines
133 B
Rust
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
|
|
|
|
mod cli;
|
|
|
|
#[tokio::main]
|
|
async fn main() {
|
|
cli::run().await;
|
|
}
|