mirror of
https://github.com/yuezk/GlobalProtect-openconnect.git
synced 2025-04-02 18:31:50 -04:00
12 lines
139 B
Rust
12 lines
139 B
Rust
mod cli;
|
|
mod handlers;
|
|
mod routes;
|
|
mod vpn_task;
|
|
mod ws_connection;
|
|
mod ws_server;
|
|
|
|
#[tokio::main]
|
|
async fn main() {
|
|
cli::run().await;
|
|
}
|