use std::path::Path;
fn main() -> Result<(), Box<dyn std::error::Error>> {
let output_path = Path::new(env!("CARGO_MANIFEST_DIR")).join("guest-js/index.ts");
tauri_plugin_audio::export_public_api_bindings::<tauri::test::MockRuntime>(&output_path)?;
println!("generated {}", output_path.display());
Ok(())
}