mirror of
https://github.com/readest/readest.git
synced 2026-05-02 13:30:45 +00:00
* auth: add safari-auth plugin for iOS OAuth * fix: temporarily disable email auth provider for iOS
8 lines
181 B
Rust
8 lines
181 B
Rust
const COMMANDS: &[&str] = &["auth_with_safari"];
|
|
|
|
fn main() {
|
|
tauri_plugin::Builder::new(COMMANDS)
|
|
.android_path("android")
|
|
.ios_path("ios")
|
|
.build();
|
|
}
|