forked from akai/readest
a72c8f2391
* fix: layout tweaks for mobile * refactor: rename plugin safari-auth to native-bridge
9 lines
167 B
Rust
9 lines
167 B
Rust
const COMMANDS: &[&str] = &["auth_with_safari"];
|
|
|
|
fn main() {
|
|
tauri_plugin::Builder::new(COMMANDS)
|
|
.android_path("android")
|
|
.ios_path("ios")
|
|
.build();
|
|
}
|