mirror of
https://gitlab.com/cristofa/tauri-plugin-keep-screen-on.git
synced 2025-12-23 09:19:49 +00:00
8 lines
165 B
Rust
8 lines
165 B
Rust
const COMMANDS: &[&str] = &["keep_screen_on"];
|
|
|
|
fn main() {
|
|
tauri_plugin::Builder::new(COMMANDS)
|
|
.android_path("android")
|
|
.ios_path("ios")
|
|
.build();
|
|
}
|