Mountain/IPC/WindServiceHandlers/Update/mod.rs
1#![allow(unused_variables, dead_code, unused_imports)]
2
3//! Update service atoms - `update:*` channel stubs.
4//! Land has no update server; all methods return idle/true/null so the
5//! workbench shows "up to date" and doesn't retry.
6
7pub mod ApplyUpdate;
8
9pub mod CheckForUpdates;
10
11pub mod DownloadUpdate;
12
13pub mod GetInitialState;
14
15pub mod IsLatestVersion;
16
17pub mod QuitAndInstall;