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