# Rust / Tauri

Use the desktop SDK inside a Tauri app by loading the public script in your webview and passing platform metadata.

## Renderer HTML

```html
<script src="https://www.smart365guide.com/downloads/desktop-sdk/smart365guide-desktop.js"></script>
<script>
  Smart365GuideDesktop.init({
    licenseKey: "lk_your_license_key",
    endpoint: "https://www.smart365guide.com",
    appName: "Acme Tauri App",
    platform: "tauri",
    language: "rust",
    framework: "tauri"
  });
</script>
```

## Tauri command bridge

See `src-tauri-main.rs` for a small native event receiver you can adapt.
