tauri-plugin-matrix-svelte 0.2.0

A Tauri plugin that exposes high level Matrix data through Svelte Rune stores
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
const COMMANDS: &[&str] = &[
    "ping",
    "login_and_create_new_session",
    "submit_async_request",
    "fetch_media",
    "fetch_user_profile",
    "watch_notifications",
    "get_devices",
    "verify_device",
];

fn main() {
    tauri_plugin::Builder::new(COMMANDS)
        .android_path("android")
        .ios_path("ios")
        .build();
}