mirror of
https://github.com/yuezk/GlobalProtect-openconnect.git
synced 2025-05-20 07:26:58 -04:00
12 lines
185 B
Rust
12 lines
185 B
Rust
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
|
|
|
|
mod cli;
|
|
|
|
#[cfg(feature = "webview-auth")]
|
|
mod webview_auth;
|
|
|
|
#[tokio::main]
|
|
async fn main() {
|
|
cli::run().await;
|
|
}
|