Skip to main content

Mountain/IPC/WindServiceHandlers/Update/
IsLatestVersion.rs

1#![allow(unused_variables, dead_code, unused_imports)]
2
3//! Wire method: `update:isLatestVersion`.
4//! Always returns `true` - Land has no update server.
5
6use serde_json::{Value, json};
7
8pub async fn Fn() -> Result<Value, String> {
9	crate::dev_log!("update", "update:isLatestVersion");
10
11	Ok(json!(true))
12}