mirror of
https://mirror.suhoan.cn/https://github.com/EasyTier/EasyTier.git
synced 2025-12-13 05:07:23 +08:00
15 lines
252 B
Rust
15 lines
252 B
Rust
const COMMANDS: &[&str] = &[
|
|
"ping",
|
|
"prepare_vpn",
|
|
"start_vpn",
|
|
"stop_vpn",
|
|
"registerListener",
|
|
];
|
|
|
|
fn main() {
|
|
tauri_plugin::Builder::new(COMMANDS)
|
|
.android_path("android")
|
|
.ios_path("ios")
|
|
.build();
|
|
}
|