const COMMANDS: &[&str] = &["ping", "create_temp_file", "remove_temp_file", "get_printers", "get_printers_by_name","print_html", "print_pdf", "custom_get_printers_by_name", "custom_print_pdf", "get_jobs", "get_jobs_by_id", "resume_job", "restart_job", "pause_job", "remove_job", "print_pdf_from_url"];
fn main() {
tauri_plugin::Builder::new(COMMANDS)
.android_path("android")
.ios_path("ios")
.build();
}