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

12 lines
139 B
Rust

mod cli;
mod handlers;
mod routes;
mod vpn_task;
mod ws_server;
mod ws_connection;
#[tokio::main]
async fn main() {
cli::run().await;
}