Skip to main content

Mountain/IPC/WindAirCommands/
mod.rs

1#![allow(non_snake_case)]
2
3//! # Wind ↔ Air delegation commands
4//!
5//! Tauri commands the Wind frontend invokes to delegate
6//! background work (updates, downloads, auth, indexing,
7//! search, metrics) to the Air gRPC daemon. Each command +
8//! DTO lives in its own sibling file; the wire-bound names
9//! (`CheckForUpdates`, `DownloadUpdate`, etc.) are preserved
10//! so the front-end `invoke()` calls don't change.
11
12pub mod AirClientWrapper;
13pub mod AirMetricsDTO;
14pub mod AirServiceStatusDTO;
15pub mod ApplyUpdate;
16pub mod AuthResponseDTO;
17pub mod AuthenticateUser;
18pub mod CheckForUpdates;
19pub mod DownloadFile;
20pub mod DownloadResultDTO;
21pub mod DownloadUpdate;
22pub mod FileResultDTO;
23pub mod GetAirAddress;
24pub mod GetAirMetrics;
25pub mod GetAirStatus;
26pub mod GetOrCreateAirClient;
27pub mod IndexFiles;
28pub mod IndexResultDTO;
29pub mod RegisterWindAirCommands;
30pub mod SearchFiles;
31pub mod SearchResultsDTO;
32pub mod UpdateInfoDTO;