allframe-tauri 0.1.28

Tauri 2.x plugin for AllFrame - Expose handlers via IPC for offline-first desktop apps
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Tauri IPC command handlers
//!
//! The actual `#[tauri::command]` functions live in `plugin.rs` because
//! `tauri::generate_handler![]` requires the command functions to be
//! defined in the same module where the macro is invoked.
//!
//! This module re-exports them for documentation purposes.
//!
//! ## Available Commands
//!
//! ### `plugin:allframe-tauri|allframe_list`
//! Returns a list of all registered handlers as `Vec<HandlerInfo>`.
//!
//! ### `plugin:allframe-tauri|allframe_call`
//! Calls a handler by name. Parameters:
//! - `handler: String` — the handler name
//! - `args: Value` — JSON arguments passed to the handler