tauri-plugin-agent-control 0.1.1

Dev-only HTTP bridge for observing and controlling Tauri webviews — like Chrome DevTools Protocol, but for Tauri.
1
2
3
4
5
6
7
const COMMANDS: &[&str] = &["agent_control_respond"];

fn main() {
    tauri_plugin::Builder::new(COMMANDS)
        .build();
    println!("cargo:rerun-if-changed=guest-js/index.js");
}