tauri-plugin-picoframe-worker 0.5.0

Example long-lived sidecar plugin for picoframe (Rust half). ACL identifier: picoframe-worker
Documentation
1
2
3
4
5
6
7
8
// Commands exposed by this plugin. The tauri-plugin build helper turns each into
// autogenerated `allow-<cmd>` / `deny-<cmd>` permissions (snake_case -> kebab-case),
// which `permissions/default.toml` aggregates into `worker:default`.
const COMMANDS: &[&str] = &["worker_status", "worker_crunch"];

fn main() {
    tauri_plugin::Builder::new(COMMANDS).build();
}