mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-19 08:31:35 +03:00
0cdfda2876
* refactor: move plugin functionality from tauri-build to tauri-plugin * fixes * fix build * move docs function * autogenerated * fix path
9 lines
166 B
Rust
9 lines
166 B
Rust
const COMMANDS: &[&str] = &["ping", "execute"];
|
|
|
|
fn main() {
|
|
tauri_plugin::Builder::new(COMMANDS)
|
|
.android_path("android")
|
|
.ios_path("ios")
|
|
.build();
|
|
}
|