mirror of
https://github.com/FluxaMedia/fluxa-desktop.git
synced 2026-08-18 13:05:54 +00:00
13 lines
268 B
Rust
13 lines
268 B
Rust
fn main() {
|
|
tauri_plugin::Builder::new(&[
|
|
"init",
|
|
"destroy",
|
|
"command",
|
|
"set_property",
|
|
"get_property",
|
|
"set_video_margin_ratio",
|
|
])
|
|
.android_path("android")
|
|
.ios_path("ios")
|
|
.build();
|
|
}
|