tauri-plugin-picoframe-hello 0.5.0

Example 'hello' plugin for picoframe (Rust half). ACL identifier: picoframe-hello
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 `hello:default`.
const COMMANDS: &[&str] = &["hello_greet"];

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