7c185c9b36
Hop-State: A_06FPJAAEMY0VXGY9S90PE90 Hop-Proposal: R_06FPJA9RY0ZAWJ1K0K760W8 Hop-Task: T_06FPJ5688NFG8VWKSFCTZEG Hop-Attempt: AT_06FPJ5688M08V2K0PEFVQX0
17 lines
416 B
Rust
17 lines
416 B
Rust
fn main() {
|
|
tauri_build::try_build(tauri_build::Attributes::new().app_manifest(
|
|
tauri_build::AppManifest::new().commands(&[
|
|
"connect",
|
|
"login",
|
|
"register",
|
|
"logout",
|
|
"has_web_session",
|
|
"open_web_app",
|
|
"open_login_window",
|
|
"open_external_url",
|
|
"reveal_window",
|
|
]),
|
|
))
|
|
.unwrap();
|
|
}
|