Skip to main content

Mountain/IPC/WindServiceHandlers/Update/
ApplyUpdate.rs

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