1 2 3 4 5 6 7 8 9 10 11 12
//! Generates Tauri command permissions for the plugin. const COMMANDS: &[&str] = &[ "capture_selection", "cancel_selection", "complete_resolution", "get_last_reference", ]; fn main() { tauri_plugin::Builder::new(COMMANDS).build(); }