2026-08-25 04:58:17 -08:00
|
|
|
const APP_COMMANDS: &[&str] = &[
|
|
|
|
|
"back",
|
|
|
|
|
"forward",
|
|
|
|
|
"reload",
|
|
|
|
|
"navigate",
|
|
|
|
|
"read_clipboard",
|
|
|
|
|
"write_clipboard",
|
|
|
|
|
];
|
|
|
|
|
|
2026-08-24 20:49:04 -08:00
|
|
|
fn main() {
|
2026-08-25 04:58:17 -08:00
|
|
|
tauri_build::try_build(
|
|
|
|
|
tauri_build::Attributes::new()
|
|
|
|
|
.app_manifest(tauri_build::AppManifest::new().commands(APP_COMMANDS)),
|
|
|
|
|
)
|
|
|
|
|
.expect("failed to run tauri-build");
|
2026-08-24 20:49:04 -08:00
|
|
|
}
|