tauri-plugin-google-auth 0.5.1

A Tauri v2 plugin that enables Google OAuth authentication
Documentation
1
2
3
4
5
6
7
8
const COMMANDS: &[&str] = &["sign_in", "sign_out", "refresh_token"];

fn main() {
    tauri_plugin::Builder::new(COMMANDS)
        .android_path("android")
        .ios_path("ios")
        .build();
}