1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
//! Tauri Remote UI Plugin Library
//!
//! This crate provides the main entry point and exports for the remote UI plugin for Tauri applications.
//! It exposes plugin initialization, error types, configuration models, and remote UI APIs.
//!
//! # License
//! AGPL-3.0-only License
//! Copyright (c) 2025 DraviaVemal
//! See LICENSE file in the root directory.
use ;
/// Re-export all public models for convenience.
pub use *;
pub use ;
pub use *;
/// Remote UI module containing plugin logic and APIs.
/// Initializes the remote-ui Tauri plugin.
///
/// This function should be called from your Tauri application's plugin registration.
/// It sets up the remote UI state and exposes plugin APIs.
///
/// # Example
/// ```rust
/// tauri::Builder::default()
/// .plugin(tauri_remote_ui::init())
/// .run(tauri::generate_context!())
/// .expect("error while running tauri application");
/// ```